js中移除字符串空格
2022-08-22 本文已影响0人
swallowsonny
1、移除字符串开头空格
str.replace(/(^\s*)/g, '')
2、移除字符串结尾空格
str.replace(/(\s*$)/g, '')
3、移除字符串开头结尾空格
str.replace(/(^\s*)|(\s*$)/g, '')
4、移除字符串结尾空格
str.replace(/\s+/g, '')
str.replace(/(^\s*)/g, '')
str.replace(/(\s*$)/g, '')
str.replace(/(^\s*)|(\s*$)/g, '')
str.replace(/\s+/g, '')