I have strings:
$str1 = "nome = stack";
$str1 = "id <5";
$str3 = "senha != over";
How do I pick up the string there in the operator or in space (when there is no space followed by operator it will separate in the operator)? In that case it would look like this:
$str1 = "nome = "; //separou no espaço seguido de operador
$str1c = "stack";
$str2 = "id <"; //separou no operador
$str2c = "5";
$str3 = "senha != ";
$str3c = "over";
I did not put code, because I do not know how to start.