I am trying to create a regular expression that matches comparisons like this:
= 445
> 5
>= 22
< 3
<= 42
<> 10 I think this will work, but it won’t:
[=|>|<|>=|<|<=|<>]\s\d+ ‘>’very imp
I am trying to create a regular expression that matches comparisons like this:
= 445
> 5
>= 22
< 3
<= 42
<> 10 I think this will work, but it won’t:
[=|>|<|>=|<|<=|<>]\s\d+ ‘>’very imp