使用特定文本获取链接

时间:2010-05-12 09:30:09

标签: regex

从HTML正文中,我必须提取包含文本“Customer”的链接。例如

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

我在考虑使用正则表达式。什么正则表达式使用?

1 个答案:

答案 0 :(得分:0)

<a href=\"(.*?)\".*>.*Customer.*</a>