set specific cahr in string to uppercase code example
Example: how to convert char to uppercase java
char first = Character.toUpperCase(userIdea.charAt(0));
betterIdea = first + userIdea.substring(1);
char first = Character.toUpperCase(userIdea.charAt(0));
betterIdea = first + userIdea.substring(1);