C#中TrimStart,TrimEnd,Trim在javascript上的实现_javascript技巧
程序员文章站
2022-05-17 17:27:48
...
于是乎,自己动手写了个!!看到很多人都是用正则,咱不会,就用了最土的方法来实现了!帖上代码吧!希望对大家有所帮助!!!
String.prototype.trimStart = function(trimStr){
if(!trimStr){return this;}
var temp = this;
while(true){
if(temp.substr(0,trimStr.length)!=trimStr){
break;
}
temp = temp.substr(trimStr.length);
}
return temp;
};
String.prototype.trimEnd = function(trimStr){
if(!trimStr){return this;}
var temp = this;
while(true){
if(temp.substr(temp.length-trimStr.length,trimStr.length)!=trimStr){
break;
}
temp = temp.substr(0,temp.length-trimStr.length);
}
return temp;
};
String.prototype.trim = function(trimStr){
var temp = trimStr;
if(!trimStr){temp=" ";}
return this.trimStart(temp).trimEnd(temp);
};
用法大家应该明了吧!!!这里就不说了哈!!!有问题请指明!谢谢!
复制代码 代码如下:
String.prototype.trimStart = function(trimStr){
if(!trimStr){return this;}
var temp = this;
while(true){
if(temp.substr(0,trimStr.length)!=trimStr){
break;
}
temp = temp.substr(trimStr.length);
}
return temp;
};
String.prototype.trimEnd = function(trimStr){
if(!trimStr){return this;}
var temp = this;
while(true){
if(temp.substr(temp.length-trimStr.length,trimStr.length)!=trimStr){
break;
}
temp = temp.substr(0,temp.length-trimStr.length);
}
return temp;
};
String.prototype.trim = function(trimStr){
var temp = trimStr;
if(!trimStr){temp=" ";}
return this.trimStart(temp).trimEnd(temp);
};
用法大家应该明了吧!!!这里就不说了哈!!!有问题请指明!谢谢!
上一篇: jQuery判断滚动条滚到页面底部脚本
下一篇: PHP常用函数【下】
推荐阅读
-
在C#中调用VBScript、javascript等脚本的实现代码
-
在C#中调用VBScript、javascript等脚本的实现代码
-
PHP中的str_repeat函数在JavaScript中的实现_php技巧
-
获取鼠标在div中的相对位置的实现代码_javascript技巧
-
C#中TrimStart,TrimEnd,Trim在javascript上的实现_javascript技巧
-
JavaScript在IE和Firefox上的差异及相互替代的实现方法_javascript技巧
-
Javascript中实现trim()函数的两种方法_javascript技巧
-
javascript 读取XML数据,在页面中展现、编辑、保存的实现_javascript技巧
-
javascript 读取XML数据,在页面中展现、编辑、保存的实现_javascript技巧
-
C#中TrimStart,TrimEnd,Trim在javascript上的实现_javascript技巧