字符串去掉所有空格

"abc 123 def".replace(/\s/g, "")

js字符串去掉所有空格-LMLPHP

字符串去掉左右两端空格

" abc 123 def ".replace(/(^\s*)|(\s*$)/g, "");

js字符串去掉所有空格-LMLPHP

字符串去掉左边空格

" abc 123 def ".replace(/(^\s*)/g,"");

js字符串去掉所有空格-LMLPHP

字符串去掉右边空格

" abc 123 def ".replace(/(\s*$)/g,"");

js字符串去掉所有空格-LMLPHP

05-11 17:43