kareem
kareem

Reputation: 1

NIFI-Remove quotes from the beginning of ID Attribute

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

Answers (1)

Vectors
Vectors

Reputation: 70

Add ReplaceText processor with the given configuration

ReplaceText Configuration

I hope this will give you desired output.

Your desired output after flowfile flows through ReplaceText:

Output

Upvotes: 2

Related Questions