資源描述:
《js字符串操作函數大全13119》由會員上傳分享,免費在線閱讀,更多相關內容在行業(yè)資料-天天文庫。
1、Js字符串操作函數大全13119Js字符串操作函數大全/*******************************************字符串函數擴充*******************************************//*===========================================//去除左邊的空格===========================================*/String.prototype.LTrim=function(
2、){returnthis.replace(/(^s*)/g,"");}/*===========================================//去除右邊的空格===========================================*/String.prototype.Rtrim=function(){returnthis.replace(/(s*$)/g,"");}/*===========================================//去除前
3、后空格===========================================*/String.prototype.Trim=function(){returnthis.replace(/(^s*)
4、(s*$)/g,"");}/*===========================================//得到左邊的字符串===========================================*/String.prototype.Left=function(
5、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);}/*===========================================//得到右邊的字符串===========================================*/String.pr
10、ototype.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=fu
16、nction(str){if(str==null){str="";}returnthis.indexOf(str);}/*===========================================//在字符串里反向查找另一字符串:位置0開始===========================================*/String.prototype.InStrRev=function(str){if(str==null){str="";}returnthis.lastIndex
17、Of(str);}/*===========================================//計算字符串打印長度===========================================*/String.prototype.LengthW=function(){returnthis.replace(/[^x00-xff]/g,"**").length;}/*================================