> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Text Length

> Count the characters in a piece of text.

The **Text Length** action returns the number of JavaScript string units in the
input. Use it for minimum-length checks, limits, or simple text metrics.

## Inputs

| Input    | Type   | Required | Description          |
| -------- | ------ | -------- | -------------------- |
| **Text** | String | Yes      | The text to measure. |

## Outputs

| Output     | Type   | Description                            |
| ---------- | ------ | -------------------------------------- |
| **Length** | Number | The measured length of the input text. |

<Note>
  Spaces and line breaks are counted. Some emoji and combined Unicode characters
  can count as more than one unit.
</Note>
