I have this:
<li><a href="/page.asp?dac=all&num=266">Company Name</a></li>
Using the following RegEx I could grab the url part:
(?<=<li><a href=").*num=.*(?=">)
I want to get the url without "amp;"
section.
So the result would be like:
/page.asp?dac=all&num=266
How should I do that?