欢迎来到天天文库
浏览记录
ID:40560090
大小:33.99 KB
页数:34页
时间:2019-08-04
《js字符串操做大全》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、String.prototype.LTrim=function(){ returnthis.replace(/(^s*)/g,"");}/*===========================================//去除右边的空格===========================================*/String.prototype.Rtrim=function(){ returnthis.replace(/(s*$)/g,"");} /*======================
2、=====================//去除前后空格===========================================*/String.prototype.Trim=function(){ returnthis.replace(/(^s*)
3、(s*$)/g,"");}/*===========================================//得到左边的字符串===========================================*/String.prototype.Le
4、ft=function(len){ if(isNaN(len)
5、
6、len==null) { len=this.length; } else { if(parseInt(len)<0
7、
8、parseInt(len)>this.length) { len=this.length; } } retur
9、nthis.substr(0,len);}/*===========================================//得到右边的字符串===========================================*/String.prototype.Right=function(len){ if(isNaN(len)
10、
11、len==null) { len=this.length; } else { if(
12、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){ if(str==null) {
16、 str=""; } returnthis.indexOf(str);}/*===========================================//在字符串里反向查找另一字符串:位置0开始===========================================*/String.prototype.InStrRev=function(str){ if(str==null) { str="";
17、 } returnthis.lastIndexOf(str);} /*===============================
此文档下载收益归作者所有