Assume my string is
http://www.test.com\r\nhttp://www.hello.com<some text here>http://www.world.com
I want to extract all URLs in the string. The output should be as follows:
http://www.test.com
http://www.hello.com
http://www.world.com
How can I achieve that?
There is no html tag in the string so extracting them using HTMLAgilityPack is not a viable option.