资源描述:
《js字符串操作函数大全》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、Js字符串操作函数大全君子之交淡如水,小人之交甘若醴。循序而渐进,熟读而精思。恸哭六军俱缟素,冲冠一怒为红颜。宜将剩勇追穷寇,不可沽名学霸王。言之无文,行而不远。Js字符串操作函数大全/*******************************************字符串函数扩充*******************************************//*===========================================//去除左边的空格=========================
2、==================*/String.prototype.LTrim=function(){returnthis.replace(/(^s*)/g,"");}/*===========================================//去除右边的空格===========================================*/String.prototype.Rtrim=function(){returnthis.replace(/(s*$)/g,"");}/*=========
3、==================================//去除前后空格===========================================*/String.prototype.Trim=function(){returnthis.replace(/(^s*)
4、(s*$)/g,"");}/*===========================================//得到左边的字符串===========================================*/Strin
5、g.prototype.Left=function(len){if(isNaN(len)
6、
7、len==null){len=this.length;}else{if(parseInt(len)<0
8、
9、parseInt(len)>this.length){len=this.length;}}returnthis.substr(0,len);}/*===========================================//得到右边的字符串=========================================
10、==*/String.prototype.Right=function(len){if(isNaN(len)
11、
12、len==null){len=this.length;}else{if(parseInt(len)<0
13、
14、parseInt(len)>this.length){len=this.length;}}returnthis.substring(this.length-len,this.length);}/*===========================================//得到中间的字符串,注意从0开
15、始===========================================*/String.prototype.Mid=function(start,len){returnthis.substr(start,len);}/*===========================================//在字符串里查找另一字符串:位置从0开始===========================================*/String.prototype.InStr=function(str){i
16、f(str==null){str="";}returnthis.indexOf(str);}/*===========================================//在字符串里反向查找另一字符串:位置0开始===========================================*/String.prototype.InStrRev=function(str){if(str==null){str="";}returnthis.lastIndexOf(str);}/*===============
17、============================//计算字符串打印长度===========================================*/String.prototype.LengthW=function(){returnthis.replace