現在、段落を文に分割するためのこの正規表現があります: /[^\.!\?]+[\.!\?]+/g
. ただし、問題は、私の段落が単なるテキストの段落ではないということです。次のようなリンクがあります。
This is text and here is a <value="link" href="http://link.com?param=test"> which directs to another page. So I don't want to split at the anything inside the link above.
それを次のような配列に分割したい:
['This is text and here is a <value="link" href="http://link.com?param=test"> which directs to another page.', 'So I don't want to split at the anything inside the link above.']
これを行う正規表現は何ですか?