Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 620 Bytes

File metadata and controls

24 lines (21 loc) · 620 Bytes

Rename - Rename the columns of a CSV

sample file
┌─────┬────────┐
│ idx │ name   │
├─────┼────────┤
│  1  │ tom    │
│  2  │ jerry  │
│  3  | hansen |
└─────┴────────┘

Set new headers: idx1, name1

┌──────┬────────┐
│ idx1 │ name1  │
├──────┼────────┤
│  1   │ tom    │
│  2   │ jerry  │
│  3   | hansen |
└──────┴────────┘