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?
Hi,
Could you please elaborate your case with an example with input and expected output values?
Best regards
Sabrina
Hello,
Actually, we cannot see your image from our side. Could you please check it?
Could you please upload your Screenshots by click 'photos' icon on forum? Feel free to let us know if there is any problem for you.
Best regards
Sabrina
Hello Sabrina,
Here are the screenshots
Remco