philzhou

导航

javascript正则表达式 实现Trim()

javascript正则表达式 实现Trim()

 

String.prototype.trim = function(){
return this.replace(/(^\s*)|(\s*$)/, "");
}

 

TrimLeft()

 

String.Prototype.trimLeft=function(){
return this.replace(/(^\s*)/,"");
}

 

trimRight()

 

String.prototype.trimRight()=funtion(){
return this.replace(/(\s*$)/,"");
}

 

 

 

 

posted on 2010-09-01 15:05  philzhou  阅读(1210)  评论(0编辑  收藏  举报