I need a regex to find the contents of the hrefs from these a tags :
<p class="bc_shirt_delete"> <a href="/CustomContentProcess.aspx?CCID=13524&OID=3936923&A=Delete" onclick="javascript:return confirm('Are You sure you want to delete this item?')">delete</a> </p>
Just the urls, not the href/ tags.
I’m parsing a plain text ajax request here, so I need a regex.
Advertisement
Answer
You can try this regex:
/href="([^'"]+)/g
Example at: http://regexr.com?333d1
Update: or easier via non greedy method:
/href="(.*?)"/g