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
Put down that phone!
Please view me on real computer.
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