I have this substring:
<a href="http://www.somesite.com/" target="_blank">
And have dug up on the internet this Regex to identify the URL portion of this string.
\b(https?|ftp|file)://[-A-Z0-9+&@#/%?=~_|!:,.;]*[-A-Z0-9+&@#/%=~_|]
However, this Regex isn't inclusive of the enclosing escaped HTML text <a href=" and " target="_blank">.
I need to be able to identify the full string in a large document, and so that includes composing additional Regex for the unescaped HTML parts of the above string. What would the Regex look like in order to find the above string?
Thanks!
