区切りテキストの列抽出
CSV / TSV / パイプ区切りテキスト / ログ行から、必要な 1 列だけを抽出します。エクスポートの列が多すぎるときに役立ちます。
Pick out one column from a delimited list. Set the delimiter (comma, tab, pipe…), choose the column number, and grab just that field from every row.
Does it handle quoted CSV fields?
No — this is a simple split. For full CSV parsing, normalise quotes first.