split() Data String Functions Web & Application String numbers = "Putin Yeltsin Gorbachev"; String list[] = split(numbers); // list[0] is now Putin, list[1] is now Yeltsin, ... String numbers = "Chernenko,Andropov,Brezhnev"; String list[] = splitInts(numbers, ','); // list[0] is now Chernenko, list[1] is Andropov, ... String numbers = "8 67 5 309"; int list[] = int(splitInts(numbers)); // list[0] is now 8, list[1] is now 67, ... A utility function which separates a series of data embedded into a String into an array of Strings. The delim parameter specifies the character or characters which mark the boundaries between each data element. If no delim character is specified, a whitespace character is used as the split character. Whitespace characters include tab (\t), line feed (\n), carriage return (\r), and form feed (\f), and space. To convert a String to an array of integers or floats, use the datatype conversion functions int() and float() to convert the array of Strings (see example above). split(str) split(str, delim) the string to be split the character or String used to separate the data String[] join() 1.0 Function Core Extended