码迷,mamicode.com
首页 > Web开发 > 详细

使用js去掉空格

时间:2018-06-24 15:02:39      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:bsp   ace   匹配   方法   AC   去掉空格   replace   使用   trim   

一.replace正则匹配

  去掉所有的空格:str = str.replace(/\s*/g,‘‘);

  去掉两头空格:str = str. replace(/^\s*|\s*$/g,‘‘);

  去掉左边空格:str=str.replace(/^\s*/,‘‘);

  去掉右边空格:str = str.replace(/(\s*$)/g,‘‘); 

二.使用trim方法

  无法去掉中间的空格

 

使用js去掉空格

标签:bsp   ace   匹配   方法   AC   去掉空格   replace   使用   trim   

原文地址:https://www.cnblogs.com/theworldofbeisong/p/9220464.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!