我正在尝试查找此模式的正则表达式。我已经尝试了一些东西,但是没有一个工作。
我尝试了这个
</a>(.*?)<a name
<a name="13" class="anchor"></a>
Some Content here
<a name="14" class="anchor"></a>
所以我的预期结果应该是此处有一些内容
答案 0 :(得分:2)
这可以完成工作:
查找:</a>\s*\K[\s\S]*?(?=<a name)
说明:
</a>\s* # </a> followed by 0 or more spaces
\K # forget all we have seen until this position
[\s\S]*? # 0 or more any character, including linebreaks
(?=<a name) # positive lookahead, make sure we have "<a name" after