Reputation: 1
i have a CSV file which contains ID Column with " in the beginning like
id, name, job, salary, Response
"1,x,y,1000,0"
"2,a,b,1000,1"
"3,q,w,1000,1"
i want to remove the (") from id column and also response column
Upvotes: 0
Views: 209
Reputation: 70
Add ReplaceText processor with the given configuration
I hope this will give you desired output.
Your desired output after flowfile flows through ReplaceText:
Upvotes: 2