正規表現を使用して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>
正規表現を使用して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>