My test RegExp with pattern before returns null. How do I get it to return 2?
s = new RegExp(/(?=ID\=)(\d+)/).exec("ID=2");
|
My test RegExp with pattern before returns null. How do I get it to return 2?
|
|||
|
|
|
Don't pass a regexp literal to the Really, though, why wouldn't you just split on
|
|||||||||||
|
Try that! You need to use |
|||
|
|
|
If you just want to extract the digit part then try following..
OR just
|
||||