LCase()
Converts the alphabetic characters in a string to lowercase.
LCase( string=string );
Returns: String
| Argument | Description |
|---|---|
|
string
string,
required
|
edit
A string or a variable that contains one |
Examples
edit // create variable with a string of text
foo = "Hello World!";
// output variable in lower case
writeOutput(LCase(foo));
See also
- Strings
- LSLCase()
- UCase()
- string.lCase()
- Search Issue Tracker open_in_new
- Search Lucee Test Cases open_in_new (good for further, detailed examples)