返回 Skill 列表
extension
分类: 数据与分析无需 API Key

Cut Tool

使用分隔符解析从文本文件中提取指定字段或列,适用于从CSV、TSV等分隔数据中选取列。

person作者: dinghaibinhubclawhub

Cut Tool - Field Extraction

Extract columns and fields from delimited text files by specifying delimiter and field position. Ideal for processing log files, CSV data, and structured text.

Quick Start

cut-tool -d ',' -f 1,3 data.csv

Features

  • Extract fields by position (-f 1,3,5)
  • Custom delimiter (-d for comma, tab, space)
  • Complement selection (everything except specified fields)
  • Output range of characters (-c 1-10)

Examples

# Extract first and third columns from CSV
cut-tool -d ',' -f 1,3 data.csv

# Extract characters 1-10 from each line
cut-tool -c 1-10 file.txt

# Use tab as delimiter
cut-tool -f 2-4 file.tsv