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

在String的原型上实现去掉字符串中的空白字符

时间:2019-08-03 14:37:35      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:ring   原型   pre   type   实现   OLE   字符   arp   div   

String.prototype.nospace = function(){

    return this.replace(/\s/g,"")

} 
var str = "  hello world  ";

console.log(str.nospace());  //helloworld

  

在String的原型上实现去掉字符串中的空白字符

标签:ring   原型   pre   type   实现   OLE   字符   arp   div   

原文地址:https://www.cnblogs.com/ccyq/p/11294595.html

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