Lower(), LowercaseString()
Summary
Converts a string to lower case.
Changes
Optional options array added in Version 6.0/2012.
Syntax
string = Lower (string input_string [, array options])
| Argument | Contents |
|---|---|
| input_string | Any string |
| Option | Type | Contents |
|---|---|---|
| Deaccent | String | "LATIN-1" to convert Western European accented characters into their no-accented equivalent |
Returns
A string equal to input_string with all characters converted to lower case.
Notes
-
Can also be called as LowercaseString().
-
The options array is an optional argument.
See Also
| Function | Summary |
|---|---|
| Proper() | Converts a string to proper case (the first letter of each word capitalized) |
| Upper() | Converts a string to upper case |