I have this regex
href=["'](.*?)["']
And I want to match this entire string but it only matches up to ('
and does not include explore
href="javascript:openurl('/Xplore/accessinfo.jsp')"
It also has to match
href="/iel5/4235/4079606/04079617.pdf?tp=&arnumber=4079617&isnumber=4079606"
The first link is the only special case, I have been able to match all other cases with the regex I have provided, I just want to somehow exclude the '
in the middle of the first string.