总结一下正则的方法
str.match(regex)
match() 方法可在字符串内检索指定的值,或找到一个或多个正则表达式的匹配。
null : 没有匹配到
存放匹配结果的数组: 匹配到了
regex.test(str)
test() 方法用于检测一个字符串是否匹配某个模式.
true : 匹配上了
false: 没有匹配上
http://www.w3school.com.cn/jsref/jsref_match.asp
时间: 2024-10-05 11:31:09
总结一下正则的方法
str.match(regex)
match() 方法可在字符串内检索指定的值,或找到一个或多个正则表达式的匹配。
null : 没有匹配到
存放匹配结果的数组: 匹配到了
regex.test(str)
test() 方法用于检测一个字符串是否匹配某个模式.
true : 匹配上了
false: 没有匹配上
http://www.w3school.com.cn/jsref/jsref_match.asp