Hello,
We have a situation which we need to check if an in-house filter is valid.
valid input can be something like the following:
(Location=Cayman) or (&(Location=Cayman)(Organization=Finance))
There are more options, but this is the basic.
We have a code that checks if the input is valid:
The problem happens when a field consists with chars like '('.
I want to create something that uses the
Pattern class.
Is it possible?