有谁知道如何使用 RegEx 将 html 标签(h1-h6、a、b、i、br)中的文本划分为“单词”?例如,
输入:
<h4>TEST</h4> This sentence <br/> is <b><i>test</i></b>
输出:
“单词”的结果列表:
<h4>TEST</h4>
This
sentence
<br/>
is
<b> <i>test</i></b>
有谁知道如何使用 RegEx 将 html 标签(h1-h6、a、b、i、br)中的文本划分为“单词”?例如,
<h4>TEST</h4> This sentence <br/> is <b><i>test</i></b>
“单词”的结果列表:
<h4>TEST</h4>
This
sentence
<br/>
is
<b> <i>test</i></b>