我对正则表达式不太满意,我需要一些帮助,但遇到了麻烦...

这是我得到的:

编辑:现在工作正常,看看...

http://jsfiddle.net/oscarj24/qrPHk/1/

这就是我需要的:

// First 4 numbers must be always 9908
// After the 4 first numbers must be a : as delimiter
// After the delimiter...
// - the allowed values are just numbers from 0-9
// - the min. length is 3
// - the max. length is infinite
// RESULT:
// - Valid: 9908:123 or 9908:123456...
// - Invalid: 9908:12 or 9908:xyz


谢谢。

最佳答案

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


将完全匹配9908:后跟3个或更多数字。

09-16 22:10