在 JavaScript 中,可以使用 replace() 方法来删除字符串中的指定字符。具体地,我们可以使用正则表达式来匹配要删除的字符,并将它们替换成空字符串。
以下是一个例子:
const myString = "Hello, World!";
const removedCharString = myString.replace(/[,!]/g, '');
console.log(removedCharString); // 输出 "Hello World"
在上面的例子中,replace() 方法被用于删除字符串 myString 中的所有逗号 , 和感叹号 !。正则表达式 [,!] 匹配任何一个逗号 , 或感叹号 ! 字符,g 标志表示全局匹配。这些匹配到的字符将会被替换成空字符串 ''。
另外,如果要删除多个指定的字符,可以将它们放在正则表达式的方括号内,例如:
const myString = "Hello, World!";
const removedCharString = myString.replace(/[eo!]/g, '');
console.log(removedCharString); // 输出 "Hll, Wrld"
在上面的例子中,replace() 方法被用于删除字符串 myString 中的所有 e、o 和感叹号 ! 字符。正则表达式 [eo!] 匹配任何一个 e、o 或感叹号 ! 字符,g 标志表示全局匹配。这些匹配到的字符将会被替换成空字符串 ''。