在正则式的应用中有三个函数使用得最多:exec().test()与字符串的replace(reg, options).其中test()最简单,只要字符串与正则式可以匹配,就返回true,否则返回false.接下来主要分析一下exec()和replace()的用法. reg.exec(): 举个例子: let reg=/-(\w)/g; let str='the-first-index'; console.log(reg.exec(str),reg.exec(str)); 这个例子取到了字符串中每…