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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
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+')