Is it possible in JavaScript to do something like preg_match_all does in PHP ?
I would like to be able to get two numbers from string:
var text = 'b463_z78';
into two separated variables:
var bannerID = 463;
var zoneID = 78;
|
Is it possible in JavaScript to do something like preg_match_all does in PHP ? I would like to be able to get two numbers from string:
into two separated variables:
|
||||
|
|
You can use this
Assuming that the input string is strictly: start with The 2 numbers are in index 1 and index 2 of the returned array. |
|||
|
|
|
To match ALL numbers in a string you can use:
So, if you had an input string of |
|||
|
|