欢迎来到天天文库
浏览记录
ID:15167302
大小:58.00 KB
页数:16页
时间:2018-08-01
《js字符串操作大全》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、js字符串操作大全.txt蜜蜂整日忙碌,受到赞扬;蚊子不停奔波,人见人打。多么忙不重要,为什么忙才重要。Js字符串操作函数大全2007年07月03日01:40Js字符串操作函数大全/*******************************************字符串函数扩充*******************************************//*===========================================//去除左边的空格===========================================*/String.pro
2、totype.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,"");}/*===========================================//得到左边的字符串===========================================*/String.prototype.Left=function(len){if(isNaN(len)
5、
6、len==null){len=this.length;}else{if(pars
7、eInt(len)<0
8、
9、parseInt(len)>this.length){len=this.length;}}returnthis.substr(0,len);}/*===========================================//得到右边的字符串===========================================*/String.prototype.Right=function(len){if(isNaN(len)
10、
11、len==null){len=this.length;}else{if(parseInt(len)<0
12、
13、parse
14、Int(len)>this.length){len=this.length;}}returnthis.substring(this.length-len,this.length);}/*===========================================//得到中间的字符串,注意从0开始===========================================*/String.prototype.Mid=function(start,len){returnthis.substr(start,len);}/*=======================
15、====================//在字符串里查找另一字符串:位置从0开始===========================================*/String.prototype.InStr=function(str){if(str==null){str="";}returnthis.indexOf(str);}/*===========================================//在字符串里反向查找另一字符串:位置0开始===========================================*/String.proto
16、type.InStrRev=function(str){if(str==null){str="";}returnthis.lastIndexOf(str);}/*===========================================//计算字符串打印长度===========================================*/String.prototype.LengthW=function(){returnthis.replace(/
此文档下载收益归作者所有