From TeleFlow
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)
Trims space characters from both ends of a string.
Syntax
- TRIM(string)
- string: a string value or variable.
Related Steps
BasicScript
Examples
BasicScript code
| Result
|
@A = " HELLO WORLD "
| HELLO WORLD
|
@B = TRIM(@A)
| HELLO WORLD
|
PRINT "@A"
|
|
PRINT "@B"
|
|