ContributionsMost RecentMost LikesSolutionsRe: How to remove Escape character while file writing CSV formatter I am reading header details from expr file as below header:“header1;header2;header3” since my delimiter is ; CSV formatter is prefixing escape character() to my header ‘;’ If i am replacing with(,) it to header:“header1,header2,header3” its working as expected but my business requirement is to have delimiter as ; Re: How to remove Escape character while file writing CSV formatter Thanks Supratim for your reply, but as per my requirement the value should not be in quote and write CSV header will be disabled How to remove Escape character while file writing CSV formatter I am trying to write a file with custom header separated by semi-colon (reading header from expression library as string)followed by data. While writing using CSV formatter escape character ‘\’ is getting added as prefix for ‘;’. Please suggest how i can remove this ‘\’