如何使用 javascript 从字符串中删除所有空格。我有这样的代码——
var Title = "";
var Str="g g";
Title = Str.replace(/^\s+|\s+$/g, '');
this gives me result Title=g g
how to get result Title=gg
如何使用 javascript 从字符串中删除所有空格。我有这样的代码——
var Title = "";
var Str="g g";
Title = Str.replace(/^\s+|\s+$/g, '');
this gives me result Title=g g
how to get result Title=gg
使用以下正则表达式:
Str.replace(/\s+/g, '');
您现在拥有的只是从字符串的开头或结尾去除空格。
试试这个
Title = Str.replace(/ /g, '');
将代码更改为:
var title = Str.replace(/\s+/g, '');
您的原始正则表达式只会从字符串的开头或结尾修剪空格。
您可以使用:
var Str="g g";
Str.replace(" ", "");