I am getting myArray as null. Can anyone help me?
myRe = new RegExp ("[A-Z]+(\\d+)");
myArray = myRe.exec("book1");
alert(myArray.length);
|
I am getting myArray as null. Can anyone help me?
|
|||
|
|
|
Your regular expression is case sensitive; try:
or:
|
|||||||
|
|
It's because you use [A-Z] which is for uppercase. Use this instead:
|
|||
|
|