I have the following regex for capturing links in tags (the tags are given in a string without the angular brackets):
^a .*href=['\"]([^'\"]*)['\"].*
and I have the following string:
a href="/wiki/Hypertext_Transfer_Protocol" title="Hypertext Transfer Protocol"
And this string isn't captured by the regex. It seems fine to me, can you tell me what's wrong?