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, '')
本文标题:js中移除字符串空格
本文链接:https://www.haomeiwen.com/subject/uafggrtx.html
网友评论