I have this string:
<a href="..">..</a></td><a href="Example.pdf">Example.pdf</a>
I would like to get all the links and I do so with this regular expression:
href=\"([^/]*?)\"
However, I would like the regular expression to ignore this specific string:
..
How would I modify my regular expression to achieve this exclusion?