Text Truncate
Deterministically truncates text by characters, words, lines, or sentences.
Run tool
Form input
Direct JSON or Markdown
Submit JSON directly or Markdown that can be converted into JSON.
Work steps
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
text | text | Yes | Text |
mode | text | Yes | Mode |
limit | integer | Yes | Limit |
Outputs
| Name | Type | Description |
|---|---|---|
result | text | Result |
original_length | integer | Original length |
truncated_length | integer | Truncated length |
work | array | Work |
Sample request
{
"text": "One two three four five",
"mode": "words",
"limit": 3
}