Getting link using specific text
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">Custome开发者_开发知识库r </a>
I was thinking of using regex. What regex to use?
<a href=\"(.*?)\".*>.*Customer.*</a>
精彩评论