In Java, find if the first character in a string is upper case without using regular expressions.
There is many ways to do that, but the simplest seems to be the following one:
boolean isUpperCase = Character.isUpperCase("My String".charAt(0));