I'd like to get urls in strings. For example I got:
"You got to see this link[http://some.link/you/have?to=see]"
I think theses are non-valid url characters: "'()[]{}
|
Your regex to find the URL would look something like this:
which is basically just looking for a string starting with 'http' or 'https' and then '://' and then all characters that follow that are not |
|||||||||||||
|