From TeleFlow
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)
Returns a string's lowercase equivalent.
Syntax
- LOWERCASE(string)
- string: a string value or variable.
Related Steps
BasicScript
Examples
BasicScript code
| Result
|
@A = LOWERCASE("HELLO WORLD")
| hello world
|
PRINT "@A"
|
|