string-length
Returns the number of characters in the string.
Signature
string-length(string:string) -> number |
Parameters
Name | Type | Description |
---|---|---|
string | string | The input string. |
Examples
The following expression will return 3:
string-length('cat') |