js中移除字符串空格

1、移除字符串开头空格

str.replace(/(^\s*)/g, '')

2、移除字符串结尾空格

str.replace(/(\s*$)/g, '')

3、移除字符串开头结尾空格

str.replace(/(^\s*)|(\s*$)/g, '')

4、移除字符串结尾空格

str.replace(/\s+/g, '')

你可能感兴趣的:(js中移除字符串空格)