How to remove '\n' from the result dataset
I am fetching data from customer table using JDBC query consumer. My data contains many fields and one of the field is 'Address' of customers. When i fetch these data i get '\n' in my output file specifically in 'Address' field
i.e, My fields appear like as shown below,
Name |Age |Address
A 10 104,1st cross
20th main road,
xxxx
In my destination file it appears like
Name |Age |Address
A 10 104,1st cross \n 20th main road,xxxx
How can i remove that '\n' from my output file?
Thanks in advance