I have to write Regex in Java according to the following conditions:
- total digit character limit = 64
- a single digit of 0 is acceptable
- first digit must be 1 through 9 if more than one digit
- following digits can be 0 through 9
- two digits are allowed after a decimal point
- comma's are not accepted
so far I have only got this:
(\\d{1,64})
Can someone help me