// exec:用来获取捕获组捕获的内容
// 返回的数组中包含input(应用正则表达式的字符串)和index(匹配项的位置)方法
// 第一项是与整个模式匹配的字符串,其余项是与捕获组匹配字符串
// test: 检测字符串是否与匹配模式
// 它接收一个字符串参数,如果与模式匹配,则返回true,否则返回false
// 以下为exec示例
var text = "dad and mom and son";
var pattern = /dad( and mom( and son))/g;
console.log("以下为exec示例");
console.log(pattern.exec(text));
// 以下为test示例
pattern = new RegExp("dad( and mom( and son))","g");
console.log("以下为test示例");
console.log(pattern.test(text));