I have a string of the format: string:num where num is any number but string is a known string that I need to match on. I'd like to have this in an if statement as:
if( it matches 'string:' followed by a number) {
//do something
}
|
I have a string of the format:
|
|||||||
|
|
You want ...
This includes:
|
||||
|
|
The above is good for integer numbers; if you want floating point numbers, or even scientific notation (as understood in C-like languages), you'll want something like this:
You can remove the first [+-]? if you don't care about sign, the (.[0-9]+)? if you don't care about floating points, and the ([eE][+-]?[0-9]+)? if you don't care about scientific notation exponents. But if there's a chance you DO want to match those, you want to include them as optional in the regex. |
|||
|
|
If you want only to check if the input string matches the pattern, you can use the RegExp.test function:
or with the String.search function:
If you want to validate and get the number:
|
||||
|
|
Number is a integer in the example above. |
|||||||
|