csv_filter
Filter CSV records using query expressions for comparisons, text matching, and compound conditions.
Instructions
Filter records using query expressions. Supports comparisons (==, !=, <, >, <=, >=), text operations (contains, startswith, endswith, matches), and compound queries (AND, OR).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | Yes | Absolute path to the CSV file | |
| limit | No | Maximum results (default: 1000) | |
| query | Yes | Query expression (e.g., status == "active" AND age > 30) | |
| outputFormat | No | Output format (default: records) |