What is the regular expression for a decimal with a precision of 2?
Valid examples:
123.12
2
56754
92929292929292.12
0.21
3.1
Invalid examples:
12.1232
2.23332
e666.76
The decimal point may be optional, and integers may also be included.
|
What is the regular expression for a decimal with a precision of 2? Valid examples:
Invalid examples:
The decimal point may be optional, and integers may also be included. |
||||
|
|
|
Valid regex tokens vary by implementation. The most generic form that I know of would be:
The most compact:
Both assume that you must have both at least one digit before and one after the decimal place. To require that the whole string is a number of this form, wrap the expression in start and end tags such as (in Perl's form):
ADDED: Wrapped the fractional portion in ()? to make it optional. Be aware that this excludes forms such as "12." Including that would be more like ^\d+\.?\d{0,2}$. |
|||||||||||||||
|
And since regular expressions are horrible to read, much less understand, here is the verbose equivalent:
You can replace Also, here is the simple Python script I used to check it:
|
||||
|
|
|
To include an optional minus sign and to disallow numbers like
|
||||
|
|
|
Try this
It will allow positive and negative signs also. |
||||
|
|
Will make things like |
||||
|
|
|
I use this one for up to two decimal places: |
|||
|
|
|
For numbers that don't have a thousands separator, I like this simple, compact regex:
or, to not be limited to a precision of 2:
The latter matches And it doesn't match empty string (like \d*.?\d* would) |
||||
|
|
|
Please see this answer for how to deal with various sorts of numbers, and especially how to make a maintainable regex. |
|||
|
|
|
Won't you need to take the With
|
|||||||
|
|
I tried one with my project. This allows numbers with + | - signs as well. /^(+|-)?[0-9]{0,}((.){1}[0-9]{1,}){0,1}$/ |
|||
|
|
|
In general, i.e. unlimited decimal places:
|
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.