Hi Jamal,
If you are wanting the Tester to find specific values, I'd recommend using the operator "=" (Equal) instead of "Contains Regex".
-Andrea
Hi @jamal
Based on the screenshot, it appears that you have to adjust the tester to do the following
Adjust the Test Statement to "=" instead of "Contains Regex"
See attached workspace and screenshot UpdateWorkbench (see attached)
Thank you for the help.
To make mor specific, in the screenshot below, I need to filter those which contains EXACTLY “,10”. This means that “,103” or “,107” shall not be filtered.
How this can be performed?
The data and workbench are attached
Use regex
,10$
Adding $ makes the regex look for values ending with ',10'
Maybe add a second condition (OR) for
^10,
(attribute starts with '10,').
Thank you very much for the help. It works fine
You're welcome, I'm glad I could help you.
Regex does take some getting used to.