I am using this regex:
\b(((\S+)?)(@|mailto\:|(news|(ht|f)tp(s?))\://)\S+)\b
to match this string of text (yes, it includes escaped HTML):
< ahref="http://www.somesite.com/" target="_blank">
But when I run it in Expresso (or any other regex program), all I retrieve is:
ahref="http://www.somesite.com
I need the whole string, including <
and target="_blank">
What am I missing in my Regex to make this work?