gpt4 book ai didi

javascript - 正则表达式在中间添加

转载 作者:行者123 更新时间:2023-11-29 17:21:46 32 4
gpt4 key购买 nike

在 JavaScript 中假设我有一个字符串:"test test hello test test"

我知道如何将“你好”替换为“再见”:

replace("hello","byebye");

但是在 'hello' 之后添加 'byebye' 的最佳方法是什么,这样我的字符串将变为:"test test hello byebye test test",使用正则表达式?

谢谢。

最佳答案

最好的方法是使用捕获组。像这样:

replace(/(hello)/, "$1 byebye");

Docs on MDN

Demo

关于javascript - 正则表达式在中间添加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12219978/

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