gpt4 book ai didi

javascript - string.replace() with RegEx 替换错误的字符

转载 作者:搜寻专家 更新时间:2023-11-01 00:08:55 24 4
gpt4 key购买 nike

我正在尝试使用正则表达式 (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

无法弄清楚我的正则表达式有什么问题。

有人吗?

最佳答案

使用这个正则表达式

[\n\r]+\.(?=[\s\n\r]+)

将其替换为

关于javascript - string.replace() with RegEx 替换错误的字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14712171/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com