Pattern regex = Pattern.compile("^\\d{0,8}\\.\\d{0,4}$");
is working. but if i enter value e.g 5000, it should work.Basically valid value should be equal or less than "99999999.9999"
if value is "123456789" it is invalid.
Decimal point is not mandatory
please help.

(...)?group. – Marko Topolnik Nov 22 '12 at 13:57