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