change smal char to capital java 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);