js替换字符串中的某个指定字符
时间: 2024-06-12 22:10:11 浏览: 218
js替换所有的方法
可以使用字符串的 replace 方法来替换字符串中的某个指定字符。例如,将字符串中的所有空格替换为下划线可以这样写:
```
const str = "hello world";
const newStr = str.replace(/ /g, "_");
console.log(newStr); // 输出 "hello_world"
```
其中,`/ /g` 是一个正则表达式,表示匹配所有空格字符,并且 `g` 表示全局匹配。
阅读全文