Hi,
I am trying to extract absolute URL from a URL field. I was trying with below code as refer
here.
But it doesn't extract exact url but with double quoute ("") in both side like below :
-- "www.acrossplatforms.com"
expected output should be :
www.acrossplatforms.com
code :
- web = input.Add_TV_Website;
- value1 = web.getSuffix("href= ");
- value2 = value1.getPrefix((" target"));
Please help me to figure out exact code .
Thanks
Arfater