f$StrLen (f$TextLänge)
f$StrLen (f$TextLänge)
Get the number of characters in a string. Empty spaces are included in the character count.
Syntax: | Length = f$StrLen( Text ) | ||
| Argument | Type | Meaning |
| Text | String | String whose length is to be calculated |
Result: | Integer | Length of the string | |
Example: | L = f$StrLen( 'Motor' ) → L = 5 | ||