I need to create a regex to match this format: B001169875
Can someone help me?
Trying to make it work using jQuery Validate custom method:
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.");
/^B001169875$/will match that… – Quentin Apr 12 '12 at 21:19B? – Robbie Apr 12 '12 at 21:21