%a:STRING% (is|equals|is not|does not equal) %b:QSTRING%
Checks if two strings are equal or not equal (case-insensitive).
if myVar is "hello":
if myVar is not "hello":
Every distinct way you can write this pattern, with optional groups and choice groups expanded. Placeholders are shown as <name>.
<a> is <b>
<a> equals <b>
<a> is not <b>
<a> does not equal <b>
%a:STRING% (is|equals) exactly %b:QSTRING%
%a:STRING% (contains|does not contain) %b:QSTRING%
%a:STRING% starts with %b:QSTRING%
%a:STRING% ends with %b:QSTRING%
%s:STRING% (is|is not) empty
length of %s:STRING% %op:OP% %n:INT%
%a:STRING% matches %b:QSTRING%
%a:STRING% (is|equals) true
%a:STRING% (is|equals) false