Extracted Data
Overview
Grammar | LEN(args) | Returns the number of characters of a string. |
Parameter 1 | args | Parameter |
Notes
If args is a string, spaces are also counted as characters; if it is an array, the function directly returns the length of the array.
Example
Formula | Result | Notes |
---|---|---|
LEN("Evermoresoftware") | 16 | / |
LEN("Evermore software") | 17 | / |
LEN(["a","b"]) | 2 | / |