我想在javascript中避免使用字符串中的空格。我想删除字符串前面和后面的空格,而不是删除字符串中的空格(前面,字符和结尾之间)。
谢谢你
答案 0 :(得分:0)
代码:
var str = "String String String";
str = str.replace(/ /g,''); // ' ' -> REMOVE ONLY ' ', NOT \n, \r, \t, and \f
console.log(str); // '/g' -> GLOBAL or MATCH_ALL or FIND ALL ' '
注意:如果要包含/ /g
/\s/g
更改为\n, \r, \t, \f, and " "
输出:
StringStringString
答案 1 :(得分:0)
var s = "my cool example string";
var s_no_space = s.replace(/ /g, '');
答案 2 :(得分:0)
您可以使用正则表达式:
var str = "a string with spaces";
var nospacesStr = str.replace(/\s/g, ""); // "astringwithspaces"