我需要创建一个正则表达式来匹配这种格式:B001169875
有人能帮我吗?
尝试使用 jQuery Validate 自定义方法使其工作:
jQuery.validator.addMethod("brandnumber", function(value, element) {
return /B\d{9}/m.test(value);
}, "Account number must start with B and be followed by 9 numbers.");