Regular Expression Help For Inputfilter For Edittext In Android
I need to implement an input filter for limiting numeral entry in the format 1234.35. That is, maximum four before . and two decimal places. I am using this regular expression patt
Solution 1:
Based upon what you said and I think it looks like you were trying to do, I would use this regular expression:
^(\d{0,4})(\.\d{1,2})?$
It matches '0-4 digits' with or without 'a decimal point and two numbers' following them. If there is a decimal point, then either one or two digits must follow it. For instance: 5
, 1234
, 1234.56
, .2
, and .31
are all valid and matched by the expression, but .123
, 1234.
, 1234.567
, 12345
, and .
are NOT matched.
Alternatively, to allow numbers ending in decimals (like .
, 1234.
, and the like), use this modification:
^(\d{0,4})(\.(\d{1,2})?)?$
Post a Comment for "Regular Expression Help For Inputfilter For Edittext In Android"