请帮我找到匹配项:
<ptext>Any Sentence/tags goes here</ptext>
我目前的正则表达式是:
\<ptext\>\b.+\b\</ptext\>
但是,如果我将例如加倍:
<ptext>Any Sentence/tags goes here</ptext> <ptext>Any Sentence/tags goes here</ptext>
我的正则表达式会将 ptext 匹配到最后一个 ptext
如何将其分开,以便在我给出的示例中匹配两(2)个匹配项。感谢你的帮助。