Forum Discussion
Akhil
5 years agoNew Contributor
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 ;
- nishantagarwal5 years agoNew Contributor II
@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.