今天给大家讲讲正则表达式,抛开啰嗦的描述,我们可以实例开始
1、字符串匹配
1)完全匹配
varstr='helloworld,welcometojsregularexpression,toomanyskills';
varregex=/hello/
console.log(regex.test(str))
运行结果:true代表已匹配
2)横向模糊匹配
使用大括号{}
//匹配a开头b出现2-5次c结尾,g代表全局匹配
varregex=/ab{2,5}c/g;
varstring="ab...