Hi,
I'm trying to use regex on the code below to extract ABC COMPANY:
<a href="javascript op650x600('INSDetail.aspx?Action=INSDETWC&Code=')">ABC COMPANY</a>
op650x600('INSDetail.aspx?Action=INSDETWC&Code=')">ABC COMPANY</a>
This is the regex I tried using with Take DOM and Take Source but it's not finding ABC COMPANY.
(?<=<a\ href="javascript op650x600\('INSDetail\.aspx\?Action=INSDETWC&Code=).*(?=</a>)
op650x600\('INSDetail\.aspx\?Action=INSDETWC&Code=).*(?=</a>)
What am I doing wrong?
Thanks!
								I'm trying to use regex on the code below to extract ABC COMPANY:
<a href="javascript
 op650x600('INSDetail.aspx?Action=INSDETWC&Code=')">ABC COMPANY</a>
op650x600('INSDetail.aspx?Action=INSDETWC&Code=')">ABC COMPANY</a>This is the regex I tried using with Take DOM and Take Source but it's not finding ABC COMPANY.
(?<=<a\ href="javascript
 op650x600\('INSDetail\.aspx\?Action=INSDETWC&Code=).*(?=</a>)
op650x600\('INSDetail\.aspx\?Action=INSDETWC&Code=).*(?=</a>)What am I doing wrong?
Thanks!

