len
Returns the length of the given string.
Syntax
len(<text>)
| Parameter | Type | Description |
|---|---|---|
| text | Text | The text value to process. |
Return values
Integer
Usage
Returns the length of the string.
len(products.sku)
Examples
RETURN [
len("some text here"),
len(customers.max_x(customers.name))
]