CONTAINS
STRING
This function will check to see if an element in array exists.
Example
DIM strings$=("kytsch", "BASIC")
IF CONTAINS(strings$, "BASIC") THEN
PRINT "YES", "basic"
END IF
Output
YES
CONTAINS
STRING
This function will check to see if an element in array exists.
DIM strings$=("kytsch", "BASIC")
IF CONTAINS(strings$, "BASIC") THEN
PRINT "YES", "basic"
END IF