gpt4 book ai didi

javascript - 简单的正则表达式替换所有但

转载 作者:行者123 更新时间:2023-12-02 17:24:33 25 4
gpt4 key购买 nike

大脑卡住

我有以下字符串:“pvtVal row1 col3 这是一个测试”

如何删除除 pvtVal row\d+ 或 col\d+ 以外的任何内容

例如:

 var test="pvtVal row1 col3 this is a test".replace(/(^(pvtVal |row\d+ |col\d+ ))/g, '');

不幸的是,它不起作用。

谢谢

最佳答案

您可以使用 String.match() 来执行此操作,而不是替换和 Array.join()

var teststr = 'pvtVal row1 col3 this is a test',
matches = teststr.match(/(?:pvtVal|row\d+|col\d+)/g),
results = matches.join(' ');

console.log(results); // => "pvtVal row1 col3"

关于javascript - 简单的正则表达式替换所有但,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23601192/

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