Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 676 Bytes

File metadata and controls

24 lines (21 loc) · 676 Bytes

Replace - Replace CSV data using a regex

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

Set criteria (Select column: name, regex pattern: tom, replacement: guy)

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