比较简单实用的使用正则三种版本的js去空格处理方法

2018-09-24 21:44

阅读:580

  分别去字符串前后,左边,右边空格
复制代码 代码如下:
String.prototype.trim=function(){returnthis.replace(/^\s+\s+$/g,)}
String.prototype.ltrim=function(){returnthis.replace(/^\s+/g,)}
String.prototype.rtrim=function(){returnthis.replace(/\s+$/g,)}


评论


亲,登录后才可以留言!