match方法:
/**
@param{RegExp} regexp
@return{Array|{index:number, input:string}}
*/
String.prototype.match =function(regexp) {};
用例1:匹配hello;返回匹配值
用例2:不区分大小写匹配hello。
用例3:不区分大小写全局匹配,返回匹配后的结果到数组中。
/**
@param{RegExp} regexp
@return{Array|{index:number, input:string}}
*/
String.prototype.match =function(regexp) {};
用例1:匹配hello;返回匹配值
用例2:不区分大小写匹配hello。
用例3:不区分大小写全局匹配,返回匹配后的结果到数组中。