码迷,mamicode.com
首页 > 其他好文 > 详细

在String原型上去除字符串的空白符

时间:2019-02-11 21:40:25      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:字符串   左右   prototype   func   string   str   ons   replace   span   

        //左空格
        String.prototype.leftSpace = function(){
            return this.replace(/^\s+/g,"")
        }
        //右空格
        String.prototype.rightSpace = function(){
            return this.replace(/\s+$/g,"");
        }
        //全部空格
        String.prototype.allSpace = function(){
            return this.replace(/\s+/g,"");
        }
        //左右空格
        String.prototype.rlSpace = function(){
            return this.replace(/(^\s+)||(\s+$)/g,"")
        }
        var str = new String(‘    1   2  3  5  4     ‘);
        console.log(str.leftSpace());
        console.log(str.rightSpace());
        console.log(str.allSpace());
        console.log(str.rlSpace());

 

在String原型上去除字符串的空白符

标签:字符串   左右   prototype   func   string   str   ons   replace   span   

原文地址:https://www.cnblogs.com/self-hard/p/10363169.html

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