How do I check if a given string is contained within either a string
array or a delimited list of strings?
eg:
strLevel = "red"
' i want to see if strLevel is one of the following, using either an array:
arrLevels = Array("red","yellow","blue")
' or a delimited list:
strLevels = "red,yellow,blue"
I just want to return a simple true/false or 1/0.
Cheers
Ben