正規表現(javascript)を使用して、テキスト内のピリオドを移動しようとしています。テキストは次のようになります。
This is a text with ending period on wrong line
.
This is a another line
私はこの正規表現を使用します:
summary.replace(/[\n\r]\.[\s\n\r]/gm, '.\r')
このように見せるために:
This is a text with ending period on wrong line.
This is a another line
しかし、代わりに次のようになります。
This is a text with ending period on wrong line
.his is a another line
私の正規表現の何が悪いのか理解できません。
誰?