JS去掉字串空格

zhangxh發表於2019-01-14

str為要去除空格的字串:

去除所有空格

str   =   str.replace(/\s+/g,"");  
複製程式碼

去除兩頭空格:

str   =   str.replace(/^\s+|\s+$/g,"");
複製程式碼

去除左空格:

str=str.replace( /^\s*/, '');
複製程式碼

去除右空格:

str=str.replace(/(\s*$)/g, "");
複製程式碼

相關文章