You can use the pipe |
to represent OR
and it works fine in Google Sheets. But I want an AND
operator and can't find that anywhere. The closest post I found was talking about java application but it doesn't run properly on Google Sheets
I want to check if in the string "equivalencia de estudo patrimonial" the strings "equivalencia" and "patrimonial" are present.
I've already tried:
=regexmatch("equivalencia de estudo patrimonial";"(?:equivalencia)(?:patrimonial)")
=regexmatch("equivalencia de estudo patrimonial";"(?=equivalencia)(?=patrimonial)")
=regexmatch("equivalencia de estudo patrimonial";"/(equivalencia)(patrimonial)/")
=regexmatch("equivalencia de estudo patrimonial";"(equivalencia)(patrimonial)")
No one worked. Always getting false.
Can someone help here?