Hopefully a quick question. I'm trying to validate a double. Making sure it's positive to one decimal place.
Good Values: 0.1, 2.5, 100.1, 1, 54
Bad Values: -0.1, 1.123, 1.12, abc, 00012.1
So I've tried Regex here:
public boolean isValidAge(String doubleNumber)
{
DoubleValidator doubleValidator = new DoubleValidator();
return doubleValidator.isValid(doubleNumber,"*[0-9]\\\\.[0-9]");
}
I've also tried: "*[0-9].[0-9]", "\\\\d+(\\\\.\\\\d{1})?", "[0-9]+(\\\\.[0-9]?)?"
Nothing seems to be working. I've been using org.apache.commons.validator.routines.DoubleValidator
Is there another way I can do this any reason why these regex's aren't working? I don't have to use regex.
Thanks
1, or54? – Jonah May 29 '11 at 16:39