When applied, this function returns the number of characters contained in a text type input.
Arguments
For more information on arguments, see the table below.
Argument | Type | Description |
---|---|---|
Text | Required | The text to examine to count the length. |
Examples
Assume a Texboxes (named HelloTextbox
) with the text ”Hello World”
:
Length(””)
: 0Length(“Grape”)
: 5Length(HelloTextbox)
: 11
Updated about a year ago