LCASE Function
Description
The LCASE function is an alias for LOWER. It converts all uppercase characters in the input string to lowercase and returns the converted string.
Parameters
str: The string to be converted to lowercase.
Return Type
- Returns a string with all characters converted to lowercase.
Notes
- The
LCASEfunction is identical to theLOWERfunction and they can be used interchangeably.
Examples
- Convert "HelloWorld" to "helloworld"
- Convert "Python" and "JAVA" to lowercase
