I tried to validate digit and make this function.
public int digitCheck(String string)
{
int flag=0;
for(int i=0;i<string.length();i++)
{
if(!Character.isDigit(string.charAt(i)))
flag++;
}
return flag;
}
But it's always said an error on length on for
for(int i=0;i<string.length();i++)
Does anyone know why there's an error on length?
You forgot to check for null, and I think you want a
boolean
function like this.