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

 var str = '           1112 2331    ';
 // replace不会改变原字符串,需要定义新变量来重新接收replace后的值
 var bbb = str.replace(/(^\s*)|(\s*$)/g,""); // 去掉首尾空格
 // 先去掉首尾空格,然后再去掉首尾  最后有可能前后还有空格,需要再次去掉空格
var aaa = str.replace(/(^\s*)|(\s*$)/g,"").replace(/(^\ \;*)|(\ \;*$)/g,"").replace(/(^\s*)|(\s*$)/g,"");
console.log(aaa);

你可能感兴趣的:(正则去掉首尾空格以及首尾的)