I'm currently trying to remove specific values from rows under specific columns in a CSV-file.
Whats the best way of doing this?
Is it to use a XSLT map file in the code or doing this only by code? (Using c#)
What I want to do is this:
BEFORE MANIPULATION:
id, name, email, phoneNumber, dob
1,John Doe,JohnDoe@mail.com,123456789,1988-08-08
2,Jane Doe,JaneDoe@mail.com,987654321,1987-07-07
AFTER MANIPULATION:
id, name, email, phoneNumber, dob
1,John Doe,,,1988-08-08
2,Jane Doe,,,1987-07-07
As you can see "email" and "phoneNumber" is gone