Scripting Operators » History » Revision 12
Revision 11 (Per Amundsen, 10/22/2015 03:43 PM) → Revision 12/64 (Per Amundsen, 10/22/2015 03:44 PM)
h1. Scripting Operators <pre> > < <= >= = == === // \\ & ismatch isin isincs ison isop ishop issop isowner isvoice isnum ischan isreg iswm iswmcs isletter isalpha isalnum islower isupper isban isinvite isexcept isignore isurl !> !< !<= !>= != !== !=== !// !\\ !& !ismatch !isin !isincs !ison !isop !ishop !issop !isowner !isvoice !isnum !ischan !isreg !iswm !iswmcs !isletter !isalpha !isalnum !islower !isupper !isban !isinvite !isexcept !isignore !isurl </pre> *Math Comparison Operators* |_.Syntax |_.Name |_<.Result | |=. <notextile>%x == %y</notextile> <notextile>%x %x = %y</notextile> %y <notextile>%x %x != %y</notextile> %y <notextile>%x %x < %y</notextile> %y <notextile>%x %x > %y</notextile> %y <notextile>%x %x <= %y</notextile> %y <notextile>%x %x >= %y</notextile> %y <notextile>%x %x // %y</notextile> %y <notextile>%x %x \\ %y</notextile> %y <notextile>%x %x & %y</notextile> %y |=. Equal Equal Not equal Less than Greater than Less than or equal to Greater than or equal to Multiple Of (Divides) Not Multiple Of (Not Divides) Bitwise And |^. True, if %x is equal to %y. True, if %x is equal to %y. True, if %x is not equal to %y. True, if %x is strictly less than %y. True, if %x is strictly greater than %y. True, if %x is less than or equal to %y. True, if %x is greater than or equal to %y. True, if %x divides %y. True, if %x does not divides %y. True, if (bit representation of) %x AND %y is a none zero.