資源描述:
《js字符串操作函數(shù)大全》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫(kù)。
1、Js字符串操作函數(shù)大全/*******************************************字符串函數(shù)擴(kuò)充*******************************************//*===========================================//去除左邊的空格===========================================*/String.prototype.LTrim=function(){returnthis.replace
2、(/(^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(len){if(isNaN(len)
5、
6、len==nul
7、l){len=this.length;}else{if(parseInt(len)<0
8、
9、parseInt(len)>this.length){len=this.length;}}returnthis.substr(0,len);}/*===========================================//得到右邊的字符串===========================================*/String.prototype.Right=function(len){if(i
10、sNaN(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開(kāi)始===================================
15、========*/String.prototype.Mid=function(start,len){returnthis.substr(start,len);}/*===========================================//在字符串里查找另一字符串:位置從0開(kāi)始===========================================*/String.prototype.InStr=function(str){if(str==null){str="";}return
16、this.indexOf(str);}/*===========================================//在字符串里反向查找另一字符串:位置0開(kāi)始===========================================*/String.prototype.InStrRev=function(str){if(str==null){str="";}returnthis.lastIndexOf(str);}/*=================================
17、==========//計(jì)算字符串打印長(zhǎng)度===========================================*/String.prototype.LengthW=function(){returnthis.replace(/[^x00-xff]/g,"**").length;}/*===========================================//是否是