TS 十三、正则表达式
程序员文章站
2022-03-22 23:08:33
...
let reg = /\d{4}-\d{7}/g;
let str = "1111-2222222";
let res = reg.exec(str);
console.log(res);
console.log(res.length);
res.forEach(function(value,index){
console.log(index);
console.log(value);
});
--->
[ '1111-2222222', index: 0, input: '1111-2222222', groups: undefined ]
1
0
1111-2222222
上一篇: kafka集群操作命令