str為要去除空格的字串:
去除所有空格
str = str.replace(/\s+/g,"");
複製程式碼
去除兩頭空格:
str = str.replace(/^\s+|\s+$/g,"");
複製程式碼
去除左空格:
str=str.replace( /^\s*/, '');
複製程式碼
去除右空格:
str=str.replace(/(\s*$)/g, "");
複製程式碼
str為要去除空格的字串:
去除所有空格
str = str.replace(/\s+/g,"");
複製程式碼
去除兩頭空格:
str = str.replace(/^\s+|\s+$/g,"");
複製程式碼
去除左空格:
str=str.replace( /^\s*/, '');
複製程式碼
去除右空格:
str=str.replace(/(\s*$)/g, "");
複製程式碼