标签: regex
从HTML正文中,我必须提取包含文本“Customer”的链接。例如
<a href="google.com?x=1&xy=2" _target="blank" title="cus">Customer </a>
我在考虑使用正则表达式。什么正则表达式使用?
答案 0 :(得分:0)
<a href=\"(.*?)\".*>.*Customer.*</a>