此方法检索匹配项。
RegExp.prototype.match() - 语法
str.match(regexp)
-
Regexp - 正则表达式对象。
RegExp.prototype.match() - 返回值
返回一个匹配数组,如果找不到匹配项,则返回null。
RegExp.prototype.match() - 示例
var str='Welcome to ES6.We are learning ES6'; var re=new RegExp("We"); var found=str.match(re); console.log(found);
运行上面代码输出
We
参考链接
https://www.learnfk.com/es6/es6-regexp-prototype-match.html
标签:无涯,str,regexp,var,RegExp,prototype,match From: https://blog.51cto.com/u_14033984/9639883