Hi All,
I have a field where user should only enter =,<,> and digits from 0 to 9.
eg :- >20 , < 30 , =40 , <>30, >=20 like this..
If any other characters entered, it'll throw error.
Is it possible to achieve this validation through - Item matches Regular expression.
I tried with giving pattern like this .*[^0-9<>=].*
But never works.

Can someone help on this, please..
Thanks