In Java, find if the first character in a string is upper case without using regular expressions.
If you have to check it out manually you can do int a = s.charAt(0)
int a = s.charAt(0)
If the value of a is between 65 to 90 it is upper case.