I need to extract a single variable number from a string. The string always looks like this:
javascript:change(5);
with the variable being 5.
How can I isolate it? Many thanks in advance.
|
1
|
I need to extract a single variable number from a string. The string always looks like this:
with the variable being 5.
|
||
|
|
|
|
Here is one way, assuming the number is always surrounded by parentheses:
|
||||||||||||||||
|
|
|
Use regular expressions:-
|
||
|
|
|
|
A simple RegExp can solve this one:
Using the |
||
|
|
|
|
||
|
|