I am looking for the best way to match two values at the same time.
If both values are in the string, I want to get a true value, But I don’t know the order in which they appear in the st
I am looking for the best way to match two values at the same time.
If both values are in the string, I want to get a true value, But I don’t know the order in which they appear in the st
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