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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
the_etl_guy
Contributor
Contributor

tMap Expression - Replace Chr(10), Chr(13), Chr(9) With Spaces

Hello everyone,

 

I had to replace hidden characters in  field sourced from MSSQL, though I've already found a working solution I'm curious about something in it.

 

Issue: "\n" in data ending the line in the target file.

Solution: row1.field.replaceAll("\r\n"," ").replaceAll("\n"," ")

For me, the above solution as well as just row1.field.replaceAll("\n"," ") has worked well.

 

I just want to know how the two replaceAll placed one after another actually work.

Labels (2)
1 Solution

Accepted Solutions
manodwhb
Champion II
Champion II

as per the solution, first row1.field.replaceAll("\r\n"," ") will exectue and to the oput of row1.field.replaceAll("\r\n"," ")  is passed to replaceAll("\n"," ") will replace \n to empty string.

View solution in original post

1 Reply
manodwhb
Champion II
Champion II

as per the solution, first row1.field.replaceAll("\r\n"," ") will exectue and to the oput of row1.field.replaceAll("\r\n"," ")  is passed to replaceAll("\n"," ") will replace \n to empty string.