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.

What it does

  • Counts every character in the input text, including spaces.

Inputs

NameTypeDescription
TextStringString/text to count characters from

Outputs

NameTypeDescription
Number of charactersNumberNumber of characters including space

Notes

  • Spaces are counted as characters.

Did this page help you?