gpt4 book ai didi

javascript - 使用正则表达式替换javascript中的第N个单词

转载 作者:行者123 更新时间:2023-11-29 21:52:14 25 4
gpt4 key购买 nike

我想用 javascript 中的另一个词替换字符串的第 N 个词。例如:

<div id="sentence">This is some sentence that has the word is.</div>

将这句话的第二个词 is 替换为 was,保留最后的 is 不变。我认为以下内容会起作用,但它不起作用:

var p = new RegExp('(?:\\S+ ){1}(\\S+)');
$("#sentence").html(function(k,v) {return v.replace(p, "was");});

最佳答案

使用捕获组并将其添加到替换值中 $1

var p = new RegExp('^((\\S+ ){1})(\\S+)');
$("#sentence").html(function(k,v) {return v.replace(p, "$1was");});

完整示例:

<!DOCTYPE html>
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js">
</script>
</head>
<body>
<div id="sentence">This is some sentence that has the word is.</div>
<script>
var p = new RegExp('^((\\S+ ){1})(\\S+)');
$("#sentence").html(function(k,v) {return v.replace(p, "$1was");});
</script>
</body>
</html>

解释:

^ 匹配字符串的开头。

(\\S+ ){n} 重复 n 次,但这也会重复捕获。 (只保留最后捕获的一组。)

((\\S+ ){1}) 将重复嵌入到捕获组中。 $1

(\\S+ ){1} 现在这是第二个捕获组。 $2 只有最后一次迭代存储在$2

(\\S+) 捕获要替换的额外单词。 $3

v.replace(p, "$1was"); $1 添加第一个捕获组并返回到字符串中。第二个捕获组被遗漏了。

关于javascript - 使用正则表达式替换javascript中的第N个单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28550049/

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