Javatpoint Logo
Javatpoint Logo

Java String toLowerCase()

The java string toLowerCase() method returns the string in lowercase letter. In other words, it converts all characters of the string into lower case letter.

The toLowerCase() method works same as toLowerCase(Locale.getDefault()) method. It internally uses the default locale.


Internal implementation

Signature

There are two variant of toLowerCase() method. The signature or syntax of string toLowerCase() method is given below:

The second method variant of toLowerCase(), converts all the characters into lowercase using the rules of given Locale.


Returns

string in lowercase letter.


Java String toLowerCase() method example

Test it Now

Output:

javatpoint hello string

Java String toLowerCase(Locale locale) Method Example 2

This method allows us to pass locale too for the various langauges. Let's see an example below where we are getting string in english and turkish both.

Output:

javatpoint hello string
javatpo?nt hello str?ng





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA