此方法检索匹配项。
str.match(regexp)
Regexp - 正则表达式对象。
返回匹配数组,如果未找到匹配项,则返回null。
var str = 'Welcome to ES6.We are learning ES6'; var re = new RegExp("We"); var found = str.match(re); console.log(found);
We