Here's my pattern
<a href="(.*?)" onmousedown="test\(\)">
Here's the source
<tags><tags><a href="http://google.com" onmousedown="test()"></tags></tags>
If I use that pattern, I get this result:
<a href="http://google.com" onmousedown="test()">
What I want to get is just
http://google.com
Any help would be appreciated. Thank you! :)