扩展String功能的方法

2019-01-04 09:48:38来源:爱站网 阅读 ()

新老客户大回馈,云服务器低至5折

java.lang.String是Java中最重要的数据类型之一,它是由许多字符String API函数组成,但的有时候还是不够,可以通过扩展来实现,下面就让爱站技术频道小编带你进入下文了解扩展String功能的方法。
/***?删除首尾空格?***/
String.prototype.Trim?=?function()?{
??return?this.replace(/(^\s*)|(\s*$)/g,?"");
}

/***?统计指定字符出现的次数?***/
String.prototype.Occurs?=?function(ch)?{
//??var?re?=?eval("/[^"+ch+"]/g");
//??return?this.replace(re,?"").length;
??return?this.split(ch).length-1;
}

/***?检查是否由数字组成?***/
String.prototype.isDigit?=?function()?{
??var?s?=?this.Trim();
??return?(s.replace(/\d/g,?"").length?==?0);
}

/***?检查是否由数字字母和下划线组成?***/
String.prototype.isAlpha?=?function()?{
??return?(this.replace(/\w/g,?"").length?==?0);
}

/***?检查是否为数?***/
String.prototype.isNumber?=?function()?{
??var?s?=?this.Trim();
??return?(s.search(/^[+-]?[0-9.]*$/)?>=?0);
}

/***?返回字节数?***/
String.prototype.lenb?=?function()?{
??return?this.replace(/[^\x00-\xff]/g,"**").length;
}

/***?检查是否包含汉字?***/
String.prototype.isInChinese?=?function()?{
??return?(this.length?!=?this.replace(/[^\x00-\xff]/g,"**").length);
}

/***?简单的email检查?***/
String.prototype.isEmail?=?function()?{
 var?strr;
??var?mail?=?this;
 var?re?=?/(\w+@\w+\.\w+)(\.{0,1}\w*)(\.{0,1}\w*)/i;
 re.exec(mail);
 if(RegExp.$3!=""?&&?RegExp.$3!="."?&&?RegExp.$2!=".")
????strr?=?RegExp.$1+RegExp.$2+RegExp.$3;
 else
  if(RegExp.$2!=""?&&?RegExp.$2!=".")
??????strr?=?RegExp.$1+RegExp.$2;
  else
???? strr?=?RegExp.$1;
 return?(strr==mail);
}

/***?简单的日期检查,成功返回日期对象?***/
String.prototype.isDate?=?function()?{
??var?p;
??var?re1?=?/(\d{4})[年./-](\d{1,2})[月./-](\d{1,2})[日]?$/;
??var?re2?=?/(\d{1,2})[月./-](\d{1,2})[日./-](\d{2})[年]?$/;
??var?re3?=?/(\d{1,2})[月./-](\d{1,2})[日./-](\d{4})[年]?$/;
??if(re1.test(this))?{
????p?=?re1.exec(this);
????return?new?Date(p[1],p[2],p[3]);
??}
??if(re2.test(this))?{
????p?=?re2.exec(this);
????return?new?Date(p[3],p[1],p[2]);
??}
??if(re3.test(this))?{
????p?=?re3.exec(this);
????return?new?Date(p[3],p[1],p[2]);
??}
??return?false;
}

/***?检查是否有列表中的字符字符?***/
String.prototype.isInList?=?function(list)?{
??var?re?=?eval("/["+list+"]/");
??return?re.test(this);
}

上文是关于扩展String功能的方法,相信大家都有了一定的了解,想要了解更多的技术信息,请继续关注爱站技术频道吧!

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:撩课-Web大前端每天5道面试题-Day26

下一篇:Vue.js-08:第八章 - 组件的基础知识