Java String toLowerCase() Method
Example
Convert a string to upper case and lower case letters:
String txt = "Hello World";
System.out.println(txt.toUpperCase());
System.out.println(txt.toLowerCase());
Definition and Usage
The toLowerCase()
method converts a string to lower case letters.
Note: The toUpperCase() method converts a string to upper case letters.
Syntax
public String toLowerCase()
Parameters
None.
Technical Details
Returns: | A String value, representing the new string converted to lower case |
---|
❮ String Methods
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.