Len
Syntax
Len(string)
Description
Returns the length of string as an integer.
Parameters
| Parameter | Description |
|---|---|
|
string |
A text string. |
Returns
Returns an integer indicating the length of string.
Example
The following table presents an example of using Len function.
| Expression | Result |
|---|---|
|
len(''Hello World'') |
11 |