比较简单实用的使用正则三种版本的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,)}
上一篇:详解使用VUE搭建后台管理系统(vue-cli更新至3.0)
下一篇:Javascript miscellanea -display data real time, using window.status
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:比较简单实用的使用正则三种版本的js去空格处理方法
文章链接:http://soscw.com/index.php/essay/17731.html
文章标题:比较简单实用的使用正则三种版本的js去空格处理方法
文章链接:http://soscw.com/index.php/essay/17731.html
评论
亲,登录后才可以留言!