fork download
  1. #!/bin/bash
  2.  
  3. sed 's/^\("\([^"]\|""\)*"\|[^",]*\),\("\([^"]\|""\)*"\|[^",]*\),\("\([^"]\|""\)*"\|[^",]*\),\("\([^"]\|""\)*"\|[^",]*\)$/\1,\3,\5/'
Success #stdin #stdout 0s 4384KB
stdin
name,email,mobile,email
a,a@test.com,1234567890,a@test.com
name,email,"mobile,number",email
a,a@test.com,1234567890,a@test.com
name,email,"mobile number",email
a,a@test.com,1234567890,a@test.com
additional test cases,"quoting everywhere","""one"", ""two"", ""three"", ""four""!","tell me your secret"
"a","a@test.com","1234567890,234,""234""","a@test.com"
stdout
name,email,mobile
a,a@test.com,1234567890
name,email,"mobile,number"
a,a@test.com,1234567890
name,email,"mobile number"
a,a@test.com,1234567890
additional test cases,"quoting everywhere","""one"", ""two"", ""three"", ""four""!"
"a","a@test.com","1234567890,234,""234"""