JS正则
Posted Brown羊羊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS正则相关的知识,希望对你有一定的参考价值。
test 判断字符串是否符合规定的正则
exec 获取匹配的数据
例子:
test例子
rep = /d+/; //只要有数字就返回true
rep.test("asdkfasdkf9999")
true
rep.test("asdkfasdkf")
false
rep = /^d+$/; //全部是数字返回真
exec例子
rep = /d+/;
rep.exec(str);
["88", index: 6, input: "wangn_88_skjffaf_33", groups: undefined]
以上是关于JS正则的主要内容,如果未能解决你的问题,请参考以下文章