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

NameTypeRequiredDescription
TextString-String/text to count characters from

Outputs

NameTypeDescription
Number of charactersNumberNumber of characters including space

Notes

  • Spaces are counted as characters.