In Java is there a way to find out if first character of a string is a number?
One way is
string.startsWith(\"1\")
and do the abov
To verify only first letter is number or character -- For number Character.isDigit(str.charAt(0)) --return true
For character Character.isLetter(str.charAt(0)) --return true