gpt4 book ai didi

javascript - 如何使用javascript替换字符串中最后一次出现的字符

转载 作者:行者123 更新时间:2023-12-02 22:39:34 25 4
gpt4 key购买 nike

我在查找如何用 ' 和 ' 替换字符串中最后一个 ', ' 时遇到问题:

有这个字符串:测试1、测试2、测试3

我想结束:测试1、测试2和测试3

我正在尝试这样的事情:

var dialog = 'test1, test2, test3';    
dialog = dialog.replace(new RegExp(', /g').lastIndex, ' and ');

但它不起作用

最佳答案

foo.replace(/,([^,]*)$/, ' and $1')

使用$(行尾) anchor 来确定您的位置,并在逗号索引右侧查找不包含任何其他内容的模式逗号。

编辑:

上面的内容完全适用于定义的要求(尽管替换字符串是任意松散的),但基于评论的批评,下面的内容更好地反射(reflect)了原始要求的精神。

console.log( 
'test1, test2, test3'.replace(/,\s([^,]+)$/, ' and $1')
)

关于javascript - 如何使用javascript替换字符串中最后一次出现的字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3829483/

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