Count Characters
Returns the number of characters in a piece of text. Use it to measure the length of a message or field, for example before sending it to a system with a length limit.
Returns the number of characters in a piece of text. Use it to measure the length of a message or field, for example before sending it to a system with a length limit.
What it does
- Counts every character in the input text, including spaces.
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
| Text | String | - | String/text to count characters from |
Outputs
| Name | Type | Description |
|---|---|---|
| Number of characters | Number | Number of characters including space |
Notes
- Spaces are counted as characters.