如何使用javascript從字符串中刪除所有空格。 我有這樣this--使用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從字符串中刪除所有空格。 我有這樣this--使用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, '');
你現在所擁有的該一個剛剛從strippes開始或您的字符串的結尾空格。
試試這個
Title = Str.replace(/ /g, '');
更改代碼:
var title = Str.replace(/\s+/g, '');
你原來的正則表達式將只從字符串開始處或結束脩整空間。
你可以使用:
var Str="g g";
Str.replace(" ", "");
其工作的感謝 –