我有像这样的链接
<a href="#" class="social google">Google</a>
<a href="#" class="social yahoo">Yahoo</a>
<a href="#" class="social facebook">Facebook</a>
现在我想match only anchor text
使用正则表达式。
我的意思是它应该只匹配第一个链接中的 Text Google。
我试过这段代码。
(?<=<a href="#" class="social .+?">).+?(?=</a>)
但它没有按预期工作。
谁能给我正确的语法?