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

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
Remco1
Contributor III
Contributor III

tFilterRow regex not working?

I'm using the advanced setting in tFilterRow (Open Studio 6.3). I've tried the following code (regex) to filter rows:

java.util.regex.Pattern.compile("\\d+").matcher(input_row.code).find()

java.util.regex.Pattern.compile("\\d*").matcher(input_row.code).find()

java.util.regex.Pattern.compile("[0-9]+").matcher(input_row.code).find()

java.util.regex.Pattern.compile("[0-9]*").matcher(input_row.code).find()

 

This should return only records where the value of "code" only exists out of digits (0-9), however it does return records with at least one digit and characters. Which regex should I use to return only digit values?

Labels (2)
10 Replies
Remco1
Contributor III
Contributor III
Author

That did it for me!!!



Thnx.



Remco