欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

正则去掉首尾空格以及首尾的

程序员文章站 2023-12-25 22:28:51
...
 var str = '           1112 2331    ';
 // replace不会改变原字符串,需要定义新变量来重新接收replace后的值
 var bbb = str.replace(/(^\s*)|(\s*$)/g,""); // 去掉首尾空格
 // 先去掉首尾空格,然后再去掉首尾  最后有可能前后还有空格,需要再次去掉空格
var aaa = str.replace(/(^\s*)|(\s*$)/g,"").replace(/(^\&nbsp\;*)|(\&nbsp\;*$)/g,"").replace(/(^\s*)|(\s*$)/g,"");
console.log(aaa);

上一篇:

下一篇: