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

I am getting myArray as null. Can anyone help me?

myRe = new RegExp ("[A-Z]+(\\d+)");
myArray = myRe.exec("book1");
alert(myArray.length);
share|improve this question

2 Answers

up vote 7 down vote accepted

Your regular expression is case sensitive; try:

myRe = new RegExp ("[A-Za-z]+(\\d+)");

or:

myRe = new RegExp ("[A-Z]+(\\d+)", "i");
share|improve this answer
1  
Or add an i parameter: new RegExp('foo', 'i'); – Pim Jager May 29 '09 at 11:32
My fault I was using RegexBuddy with Case Insensitive mode turned on. Thank you for the quick answer. – Sergio del Amo May 29 '09 at 11:33

It's because you use [A-Z] which is for uppercase.

Use this instead:

pattern = /[a-z](\d+)/i;
myArray = pattern.exec("BOOK1");
alert(myArray.length);
share|improve this answer

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.