Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.");
share|improve this question
9  
/^B001169875$/ will match that… – Quentin Apr 12 '12 at 21:19
Does it always start with a B? – Robbie Apr 12 '12 at 21:21
Yes, always starts with a B and then always followed by numbers. – jrutter Apr 12 '12 at 21:23
@jrutter Consider marking one of the answers as accepted. – Shedal Apr 16 '12 at 16:27

3 Answers

up vote 2 down vote accepted

If it always starts with a B and is followed by 9 numbers then this will do it:

^B\d{9}$

And you could use it like this (depending on how you want to use it):

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."
);
share|improve this answer
This works great - I created a custom validator method to test against this using your regex. 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."); – jrutter Apr 12 '12 at 21:34
@jrutter - Did you test it with the following string: AAB001169875AA? – sch Apr 12 '12 at 21:38
No, good call - that breaks it. Also, if I add more than 9 numbers it doesnt prevent it. – jrutter Apr 12 '12 at 21:41
i've updated my answer with your new requirement. glad it helped – Robbie Apr 12 '12 at 21:54
+1. And @jrutter, you didn't really give the correct specifications at the beginning. But what you want is clear now :) – sch Apr 12 '12 at 22:03

You should specify more details about the format. But it will be something along the lines of:

[A-Z][0-9]{9}

It means: one capital letter (A..Z), then nine digits (0..9).

share|improve this answer

You said the string will always start by B followed by numbers. The regex depends on how many numbers you want to match:

Also, you probably have to use ^ and $ to specify that the string should only contain B and the numbers: /^B\d{9}$/, /^B\d*$/ or /^B\d+$/.

share|improve this answer
Use \z in preference to $. $ means end-of-string (possibly preceded by newline). – Porges Apr 12 '12 at 23:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.