正规表达式问题
<a href="xx.asp">this is a test</a>
如何匹配这个 字符串
我写了一个
(<a (.*)>([a-z]([ ])*)+</a>)
可以匹配
但是 如查字符串是
<a href="xx.asp">this is a test</a><a href="xx.asp">this is a test</a>
它匹配 是<a href="xx.asp">this is a test</a><a href="xx.asp">this is a test</a>
而不是 <a href="xx.asp">this is a test</a>两个