Regex and delimiter in javascript

后端 未结 3 1333
有刺的猬
有刺的猬 2021-01-28 00:52

I am not so good with regex, I need some help and I am stuck...

This is what I got:

EDITED: Now is working fine, take a look at...

http:

3条回答
  •  庸人自扰
    2021-01-28 01:42

    var regex = /^9908:\d{3,}$/;
    

    will match exactly 9908: followed by 3 or more digits.

提交回复
热议问题