راه 1) استفاده از regex:
public static boolean hasDigit(String str)
{
if(str == null)
{
return false;
}
return str.matches(".*\\d.*");
}
راه 2) استفاده از Character.isDigit:
public static boolean hasDigit(String str)
{
if(str != null)
{
for(char c : str.toCharArray())
{
if(Character.isDigit(c))
{
return true;
}
}
}
return false;
}