js 的Trim、LTrim、RTrim函数

js 的Trim、LTrim、RTrim函数

此方法是通过正则表达式来处理的,代码比较少,比较经典。

如下是追加到String的属性当中。

 

String.prototype.Trim = function() 
{ 
return this.replace(/(^/s*)|(/s*$)/g, ""); 
} 
 
String.prototype.LTrim = function() 
{ 
return this.replace(/(^/s*)/g, ""); 
} 
 
String.prototype.RTrim = function() 
{ 
return this.replace(/(/s*$)/g, ""); 
} 

你可能感兴趣的:(正则表达式,String,function)