Maison >interface Web >js tutoriel >增强的 JavaScript 的 trim 函数的代码_javascript技巧

增强的 JavaScript 的 trim 函数的代码_javascript技巧

WBOY
WBOYoriginal
2016-05-16 19:10:261022parcourir
复制代码 代码如下:

String.prototype.trim=function(){ 
var _argument = arguments[0] || " "; 
var _re= new RegExp("(^"+_argument+"*)|("+_argument+"*$)","g"); // 区分大小写 
return this.replace(_re,""); 

String.prototype.ltrim=function(){ 
var _argument = arguments[0] || " "; 
var _re= new RegExp("(^"+_argument+"*)","g"); 
return this.replace(_re,""); 

String.prototype.rtrim=function(){ 
var _argument = arguments[0] || " "; 
var _re= new RegExp("("+_argument+"*$)","g"); 
return this.replace(_re,""); 




string.trim(",") 表示删除 string 左右两端的的",",如果 trim 不带参数,那默认为删除两端的空格。
比以前的trim 更 powerful!
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn