gpt4 book ai didi

javascript - 替换以下划线开头的单词

转载 作者:行者123 更新时间:2023-12-02 15:23:49 25 4
gpt4 key购买 nike

我有一个文本 block ,其中从下划线开始的每个单词都应该替换为另一个唯一的字符串。

例如:

_word -> _a 
_anotherword -> _b
_another_word -> _c
._dotwithword -> ._d
[_brword] -> [_e]
another_word -> another_word (should stay the same)

我正在使用这个正则表达式来查找它们 - (_\w+) ,它会正确替换所有内容,除了最后一个(如果下划线位于单词中间)。有没有办法通过 JS 正则表达式检查这一点?

要测试的 JS fiddle :http://jsfiddle.net/C93bs/3/

非常感谢!

最佳答案

(\b_\w+) - \b 匹配word boundary .

关于javascript - 替换以下划线开头的单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11220497/

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