What is the regular expression to allow for numbers between -90.0 and +90.0? The numbers in between can be floating or whole numbers.
|
|
I don't think you want to use a Regex for this. Use
If your value is already a |
||||
|
|
|
Not that you really want to use a Regex here (you should parse it, instead, and do the comparison on a numeric type - such as float, or double). But, you could do this:
This will match -90.0 to 90.0, inclusive. If you want it to be exclusive, drop the 90.0 clause.
If you want to support more decimal points, then change the 0-89.9 clause to:
Escape, if necessary |
|||||
|
|
This is a problem that would be better solved with a check. But, if you want a regex, you can have a regex.
will work, I think. Match an optional '-', followed by any number of zeros, followed by either 90 with any number of zeros, or a number that consists of an optional tens digit between 1 and 8, followed by a ones digit, followed by a optional decimal and decimal places. But you see why using a regex for this is so messy. Check the bounds as a numbers, not a series of numerals. |
|||||||||
|