RegExp實例方法:html
一、Test()spa
RegExpObject.test(string)htm
判斷string中是否有與表達式匹配的字符串,有則返回true,不然返回falseip
例如字符串
var patt1=new RegExp("e"); string
document.write(patt1.test("The best things in life are free")); it
因爲該字符串中存在字母 "e",以上代碼的輸出將是:trueconsole
二、exec()class
RegExpObject.exec(string)test
exec() 方法檢索字符串中的指定值。返回值是被找到的值。若是沒有發現匹配,則返回 null。
例如
var str= "cat2,hat8" ;
var reg=/c(at)\\d/ ; 有分組
console.info(reg.exec(str));//運行返回 ["cat2", "at"]網址連接:http://www.studyofnet.com/news/662.html