text_text_column
Extract, align, or analyze columns from delimited text. Use extract to pull a single column, align to format into a monospaced table, or split for a per-column analysis report.
Instructions
Extract, Align, or Analyze Columns in Delimited Text. Splits each line of delimited text on a delimiter and operates on the resulting columns. operation=extract pulls one 1-based column into a newline-separated list; operation=align pads every column to a fixed width (left/right/center) for monospaced tabular output; operation=split emits a human-readable per-column analysis report grouping values by column. Use this for columnar/tabular text (CSV, TSV, space-separated logs) when you need a single column or aligned table; use text_splitter to break text into rows/tokens (lines, regex, fixed length), text_joiner to recombine fields, and csv_json for structured CSV->JSON. Read-only, non-destructive pure computation that runs in-process with no network or storage; rate limited to 60 req/min (anonymous) / 120 req/min (authenticated). Returns the processed text plus before/after line/character/word stats and the resolved options.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Multi-line delimited input; each line is split on the delimiter into columns. | |
| operation | No | Column operation to perform. | extract |
| columnNumber | No | 1-based column index used by the extract operation; clamped to a minimum of 1. | |
| delimiter | No | Field separator splitting each line into columns; must be non-empty. | |
| alignment | No | Padding direction for the align operation. | left |
| width | No | Target column width in characters for the align operation; clamped to 1-200. | |
| fillChar | No | Single character used to pad columns during align; first character is used, empty falls back to a space. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| success | No | True when the operation succeeded. | |
| result | No | Processed text: extracted column list, aligned table, or analysis report. | |
| stats | No | Before/after metrics plus operation-specific counters. | |
| options | No | Echo of the resolved (normalized) request parameters. |