From TeleFlow
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)
Returns the number of alphas in a string.
Syntax
- LEN(string)
- string: a string value or variable.
Related Steps
BasicScript
Examples
BasicScript code
| Result
|
@A = "Hello world"
| 11
|
@B = LEN(@A)
|
|
PRINT "@B"
|
|