hi i have a string like this
track._Event('product', 'test');Product.lisen(1234, 21, 4343); return false;
i want to use some regular expression so i would end up with groups
pid = 1234
p1 = 21
p2 = 4343
|
Note: I used named capturing groups, but that is not necessary in this case. |
|||
|
|
|
Why regular expression? you can do it will simple string manipulations
|
|||
|
|