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