| Split the SQL operator and the value, (default operator is '=')
example:
"~*.*toto.*" will become { "~*", ".*toto.*" }
but "\~*.*toto.*" will become { "=", "~*.*toto.*" }
possible operators are:
< | Less than? |
<= | Less than or equals? |
<> | Not equal? |
= | Equals? |
> | Greater than? |
>= | Greater than or equals? |
~~ | LIKE |
!~~ | NOT LIKE |
~ | Match (regex), case sensitive |
~* | Match (regex), case insensitive |
!~ | Does not match (regex), case sensitive |
!~* | Does not match (regex), case insensitive |
|