I am using FileHelper 2.0 for parsing my csv data. Is there any option that filehelper can properly handle escaped delimiter? That it can identify field as data and not as delimiter.
Our csv format: escape comma (,) with \,
Example data:
name, lastname
nico\,le,opeka
Current code:
[DelimitedRecord(",")]
public class contactTemplate
{
public string firstName;
public string lastName;
}
How can I get firstName = nico,le and lastName = opeka. FileHelpers splits by comma , and now it returns:
firstName -> nico\
lastName -> ,le,opeka