Split - Split one CSV file into many CSV files
sample file
┌─────┬────────┐
│ idx │ name │
├─────┼────────┤
│ 1 │ tom │
│ 2 │ jerry │
│ 3 | hansen |
└─────┴────────┘
Set criteria (Split rows: 2, Split mode: Rows)
split 1
┌─────┬────────┐
│ idx │ name │
├─────┼────────┤
│ 1 │ tom │
│ 2 │ jerry │
└─────┴────────┘
split 2
┌─────┬────────┐
│ idx │ name │
├─────┼────────┤
│ 3 | hansen |
└─────┴────────┘
sample file
------------------------
idx,name
hello world...
say hello.
this is a test for lines.
------------------------
Set criteria (Split rows: 2, Split mode: Lines)
split 1
------------------------
idx,name
hello world...
say hello.
------------------------
split 2
------------------------
idx,name
this is a test for lines.
------------------------