1. 程式人生 > >去除字符串中空格

去除字符串中空格

舉例 all eal str space pla 所有 rep return

去除字符串前後的空格

function trim(str) {
return str.replace(/(^\s+)|(\s+$)/g, "");
}

去除字符串中所有空格

function removeAllSpace(str) {
return str.replace(/\s+/g, "");
}

用法舉例:
alert(trim(‘ ab cd ‘)); //結果: ab cd
alert(removeAllSpace(‘ ab cd ‘)); //結果: abcd

去除字符串中空格