Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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?