Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Vasanti
Contributor
Contributor

How to display CLRF from file in talend

Hi,

I wanted to display and remove CRLF from text file using Talend , can anyone help here.

Thanks,

vasanti

Labels (2)
1 Reply
gjeremy1617088143

hi, if you want to remove CRLF from text file , you can use tFileInputRaw to read the file, convert the return object as a String with tConvertType then :

(your String).replaceAll("\\r\\n","") in a tMap or a TJavaRow

instead of tJavaRow or TMap you could alos you tReplace component :

in search field : "\r\n" and in replace field : ""

Send me love and kudos