javascript 去空格
时间: 2023-09-09 11:07:16 浏览: 85
JavaScript去掉空格的方法集合
JavaScript中可以使用trim()方法去除字符串前后的空格,也可以使用正则表达式去除字符串中所有空格。
使用trim()方法:
```
let str = " hello world ";
str = str.trim();
console.log(str); // "hello world"
```
使用正则表达式:
```
let str = " hello world ";
str = str.replace(/\s+/g, "");
console.log(str); // "helloworld"
```
其中,/\s+/g 表示匹配一个或多个空格,g表示全局匹配。
阅读全文