各文の途中で改行として\rタグと\nタグが返されるSRTデータがいくつかあります。テキスト/文の途中にある\rタグと\nタグのみを検索し、他の改行を示す他のタグは検索しないようにするにはどうすればよいですか。
ソースの例:
18
00:00:50,040 --> 00:00:51,890
All the women gather
at the hair salon,
19
00:00:52,080 --> 00:00:56,210
all the mothers and daughters
and they dye their hair orange.
必要な出力:
18
00:00:50,040 --> 00:00:51,890
All the women gather at the hair salon,
19
00:00:52,080 --> 00:00:56,210
all the mothers and daughters and they dye their hair orange.
私は正規表現で絶対にがらくたですが、私の最善の推測(役に立たない)は次のようなものでした
var reg = / [\ d \ r] [a-zA-z0-9 \ s +] + [\ r] /
次に、その上でsplit()を実行して、値の1つの途中にある\rを削除します。私はそれが正しい方法にさえ近くないことを確信しているので...stackoverflow!! :)