tags:

views:

28

answers:

1

Hi,

From HTML body,I have to extract link which has text "Customer".For example

<a href="google.com?x=1&xy=2" _target="blank" title="cus">Customer </a>

I was thinking of using regex. What regex to use?

A: 
<a href=\"(.*?)\".*>.*Customer.*</a>
x2
this does not work.I am using vbscript for regular expressions
jess