08-17-2021 12:20 AM
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 ‘\’
08-17-2021 11:39 AM
@Akhil if you are interested only in data , try using .replaceAll(“,” , “;”) in Mapper after Parser.
You will get data something like this : Candace;Kelley;10/29/21;160206159956;Dalbeattie;Customer Relations
Hope this helps.