标签:表达 多次 abc 规范 regexp a* 正则 console 第一个
JS创建正则的方式:let reg = new RegExp(/^1/)
let reg = /^1/
使用:
console.log(reg.test(‘123‘)) // true
let reg = /ab/
let str = ‘abcs123‘
let newStr = str.replace(reg, ‘456‘)
console.log(str, newStr) // abcs123 456cs123
常见语法:
标签:表达 多次 abc 规范 regexp a* 正则 console 第一个
原文地址:https://blog.51cto.com/13701875/2447561