I have a csv file and I need to remove somespecific text from a colum and replace another value for that.
My csv
date,name
20191106,sachith
To do it, I have used UpdateRecord
processor with following configurations.
/date
-> ${field:replaceAll(2019,1212)}
My current configurations makes following csv as result.
date,name
"",sachith
Expected result
date,name
12121106,sachith
What am I missing here? I have used QueryRecord
processor, but it didnt solve my issue either.