Reference
Put down that phone! Please view me on real computer.
SPLIT STRING, DELIMITER
Split a string by a delimiter.
DIM splits$=SPLIT("String to split", " ") FOR val$ IN splits$ PRINT val$ LINE BREAK NEXT