我想测试锚标签之间是否存在字符串,例如:
这是示例文本<a href=""> this is test string </a>
,这里是其他锚标记<a href=""> link again </a>
谢谢。
在上面的字符串中,如果锚点标记之间存在“test”,我想匹配。我怎么能用正则表达式来做。
请帮忙!
感谢。
答案 0 :(得分:2)
以下是您可以使用的功能:
jQuery Object
答案 1 :(得分:1)
请尝试以下代码:
$x='<a href="">This is a test string</a>';
if(preg_match_all('~<a href="">.+test.+</a>~i',$x,$m))
{echo "Match";}
else
{echo "No match";}