How to extract URL from the Content which is embedded with some other text

Hi All,
for example
" There could me many,but this is one http://www.w3schools.com/Sql/1 could be useful "

The above one which is quoted is a string which is stored in “StrVariable”. Now I want to extract only the URL into “StrURL”.

I guess you are the same person you asked in other post.

“\S*(http|https)\S*” — This regex will find http or https in a word, try this in Matches activity with your email.body as input.