Java String toUpperCase() Method Example
Java String toUpperCase() method converts all the lowercase letters of a string into uppercase and returns that upper-cased string. In other words, the toUpperCase() method of String class converts all the characters of a string into uppercase and returns that upper-cased string. Non-alphabetical characters are unaffected by this method. General … Read more