js去除字符串前后空格
时间:2022-09-20 10:27
1.使用 js 提供的函数 trim()
//trim()例子 let str = ' hello ' console.log(str.trim()) //hello
2.使用正则表达式
去除所有空格: str = str.replace(/\s+/g,"")
去除两头空格:str = str.replace(/^\s+|\s+$/g,"")
去除左空格:str=str.replace( /^\s/, '')
去除右空格:str=str.replace(/(\s$)/g, "")