欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

TS 十三、正则表达式

程序员文章站 2022-03-22 23:08:33
...

TS 十三、正则表达式

 TS 十三、正则表达式

TS 十三、正则表达式

TS 十三、正则表达式

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

 

相关标签: TS