JS Regex to find href of several a tags

javascript, regex

Solution

You can try this regex:

/href="([^\'\"]+)/g

Example at: http://regexr.com?333d1

Update: or easier via non greedy method:

/href="(.*?)"/g

Problem

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&amp;OID=3936923&amp;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.

Original source