Java Character toUpperCase() Example

Java Character API comes with many methods to convert a character’s type to another type. toUpperCase(char ch) converts lowercase ch letter to uppercase. After conversion, you can check the character is really converted or not with isUpperCase() method. If the character is already an uppercase one, it is returned as it is by the method. …

Java Character toUpperCase() Example Read More »