LowerCase
The LowerCase function converts all characters in a string to lowercase.
Definition
LowerCase(texto)Parameters
| Name | Description | Data type |
|---|---|---|
| texto | Provided text, which will be converted to lowercase | string |
Example
The following example converts the word 'PASSWORD' to lowercase.
LowerCase('PASSWORD')The result is "password" (string).
Other uses
In the following example, the value 1 should be returned if the provided text matches the text 'dispositivo', regardless of whether it is written in uppercase, lowercase, or a mix of both. This can be achieved by converting the text to lowercase:
If(LowerCase('DISPOsitiVo') = 'dispositivo', 1, 0)The result is 1 (numeric value).