OutputVar := Mfunc.IfNotContains(ByRef var, MatchList)
Checks whether a variable's contents does not match one of the items in a list.
var
The name of the variable whose contents will be checked. For the "contains" operator, a match occurs more easily: whenever Var contains one of the list items as a substring.
MatchList
A comma-separated list of strings, each of which will be compared to the contents of var for a match. Any spaces or tabs around the delimiting commas are significant, meaning that they are part of the match string. For example, if MatchList is set to "ABC , XYZ" then var must contain either ABC with a trailing space or XYZ with a leading space to cause a match.
Returns true if var is not contained MatchList; Otherwise false.
The comparison is always done alphabetically, not numerically.
Static Method.
See Also: AutoHotKey if var in/contains
if (Mfunc.IfNotIn(var, "exe,bat,com"))
{
MsgBox The file extension is not an executable type.
}
; Avoid spaces in list.
if (Mfunc.IfNotIn(var, "1,2,3,5,7,11"))
{
MsgBox %var% is not a small prime number.
}
; Note that it compares the values as strings, not numbers.
if (Mfunc.IfNotContains(var, "1,3"))
{
MsgBox Var does not contains the digit 1 or 3
}
; Avoid spaces in list.
if (Mfunc.IfNotIn(var, MyItemList))
{
MsgBox %var% is not in the list.
}
InputBox, UserInput, Enter YES or NO
if (Mfunc.IfNotIn(UserInput, "yes,no"))
{
MsgBox Your input is not valid.
}
WinGetTitle, active_title, A
; Note that it compares the values as strings, not numbers.
if (Mfunc.IfNotContains(active_title, "Address List.txt,Customer List.txt"))
{
MsgBox None of the desired windows are active.
}
; Note that it compares the values as strings, not numbers.
if (Mfunc.IfNotContains(active_title, "metapad,Notepad"))
{
MsgBox But the file is not open in either Metapad or Notepad.
}