kytschBASIC

Put down that phone!
Please view me on real computer.

SPLIT
STRING, DELIMITER

Split a string by a delimiter.

Example

DIM splits$=SPLIT("String to split", " ")

FOR val$ IN splits$

	PRINT val$

	LINE BREAK

NEXT

Output

String
to
split

See also