var str = ” hello world “;(str); //输出”hello world”
2. 使用正则表达式()方法外,还可以使用正则表达式去掉字符串中的空格。示例如下:
var str = ” hello world “;
str = str.replace(/\s+/g,””); //输出”helloworld”
3. 去掉字符串中间的空格
如果需要去掉字符串中间的空格,可以使用replace()方法结合正则表达式。示例如下:
var str = “hello world”;
str = str.replace(/\s+/g,””); //输出”helloworld”
总结:()方法和正则表达式。在实际开发中,可以根据具体情况选择合适的方法,以便更好地进行后续操作。