超全的js正则表达式整理笔记(3)

var sToMatch = "this has been a short, short summer"; var reShort = /(s)hort/g; reShort.test(sToMatch); alert(RegExg.input); //"this has been a short, short summer"; alert(RegExg.leftContext); //"this has been a "; alert(RegExg.rightContext); //", short summer"; alert(RegExg.lastMatch); //"short" alert(RegExg.lastParen); //"s" compile() //编译正则表达式 alert(reCat.exec("a cat, a Cat, a cAt caT")); //返回一个数组,数组中的第一个条目是第一个匹配,其他的是反向引用 alert(reCat.test("cat")); //true,检索字符串中指定的值,返回 true 或 false。

支持正则表达式的String对象的方法 

var sToMatch = "a bat, a Cat, a fAt, a faT cat"; var reAt = /at/gi; alert(sToMatch.match(reAt)); //返回一个包含在字符串中的所有匹配的数组 alert(sToMatch.search(reAt)); //输出第一次在字符串中出现的位置3,全局匹配g在search()时不起作用 alert(sToMatch.replace(reAt, "Dog")); //替换与正则表达式匹配的子串 alert(sToMatch.replace(reAt, function(sMatch){ return "Dog"; })); alert(sToMatch.split(/\,/)); //把字符串分割为字符串数组

常用模式 
日期:/(?:0[1-9]|[12][0-9]|3[01])\/(?:0[1-9]|1[0-2])\/(?:19|20\d{2})/ 
URL:/^([w-]+.)+[w-]+(/[w-./?%&=]*)?$/ 
E-mail地址:/^(?:\w+\.?)*\w+@(?:\w+\.?)*\w+$/ 
国内电话号码:d{3}-d{8}|d{4}-d{7} 
腾讯QQ号:[1-9][0-9]{4,} 
邮政编码:[1-9]d{5}(?!d) 
身份证:d{15}|d{18} 
ip地址:d+.d+.d+.d+ 
中文字符: [u4e00-u9fa5] 
双字节字符(包括汉字在内):[^x00-xff] 
    String.prototype.len=function(){return this.replace([^x00-xff]/g,"aa").length;} 
全角字符:/[^uFF00-uFFFF]/g 
匹配特定数字: 

^[1-9]\d*$    //匹配正整数 ^-[1-9]\d*$   //匹配负整数 ^-?[1-9]\d*$   //匹配整数 ^[1-9]\d*|0$  //匹配非负整数(正整数 + 0) ^-[1-9]\d*|0$   //匹配非正整数(负整数 + 0) ^[1-9]\d*\.\d*|0\.\d*[1-9]\d*$   //匹配正浮点数 ^-([1-9]\d*\.\d*|0\.\d*[1-9]\d*)$  //匹配负浮点数 ^-?([1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0)$  //匹配浮点数 ^[1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0$   //匹配非负浮点数(正浮点数 + 0) ^(-([1-9]\d*\.\d*|0\.\d*[1-9]\d*))|0?\.0+|0$  //匹配非正浮点数(负浮点数 + 0)

是不是很全面,很详细,感觉不错的就把这文章好好收藏,js正则表达式很重要的学习环节,大家一定好好学习。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjpdpg.html