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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Parikhharshal
Creator III
Creator III

Ignore double blackslash in Talend

Hi experts

 

While executing the SQL I have got below statement:

 

regexp_instr( lower(md.name), ' ^(week |module) \\ d+ ')
 
I have put in as part of tDbRow component. As soon as Talend executes this it just skips and doesn't process data for that column.
 
How can I ignore or skip double backslashes?
 
Thanks
Harshal.
Labels (2)
1 Solution

Accepted Solutions
Parikhharshal
Creator III
Creator III
Author

I was able to find the solution.

 

Need to another 2 backslashes to ignore.

 

regexp_instr(lower(md.name), '^(week|module) \\\\d+')

 

View solution in original post

1 Reply
Parikhharshal
Creator III
Creator III
Author

I was able to find the solution.

 

Need to another 2 backslashes to ignore.

 

regexp_instr(lower(md.name), '^(week|module) \\\\d+')