鉴于此文本字符串:
$myString = '<details class="myEl" open="open">
<summary>In this article</summary>
<ol>
<li><a href="post-slug/">Introduction</a></li>
<li><a href="post-slug/2/">Title for the second page</a></li>
<li><a href="post-slug/3/">Title for the third page</a></li>
</ol>
</details>';
如果我知道要搜索的匹配项是“/2/”,那么正则表达式会拉出“第二页的标题”吗?
如果匹配是“/3/”,我还需要拉出“第三页的标题”,所以我需要一个通用的正则表达式,它将在匹配后拉出 > 和 < 之间的字符串。