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: 
Anonymous
Not applicable

Replace equals sign in tmap

I have a string whereby it has an = sign in it and want to replace that = sign with a blank space in a tmap

 

 

e.g. 

 

 

"=abcdef"

"abcdef"

Labels (2)
1 Solution

Accepted Solutions
manodwhb
Champion II
Champion II

@gedda68,use the below expression in tMap or tJavarow.

 

row1.col.replaceAll('=','')

View solution in original post

2 Replies
manodwhb
Champion II
Champion II

@gedda68,use the below expression in tMap or tJavarow.

 

row1.col.replaceAll('=','')

manodwhb
Champion II
Champion II

@gedda68,does it solve your issue?