正则表达式分组(Grouping)

 

一 捕获型

 

(x)  匹配 x ,并且捕获匹配项

 

const regExp = /(\w+)\s+(\d+)/;
const str = 'Android 8';
str.replace(regExp,'$1,KFC')

 

正则表达式分组(Grouping)

 

二 非捕获型

 

(?:x)  匹配 x ,但不捕获匹配项

 

const regExp = /(?:\w+)\s+(\d+)/;
const str = 'Android 8';
str.replace(regExp,'KFC')

 

正则表达式分组(Grouping)

 

上一篇:js中date时间转换yyyy-mm-dd hh:MM:ss等格式字符串


下一篇:MySQL:where子句 使用正则表达式