saveStrings() Input/Output Files Application String words = "apple bear cat dog"; String list[] = splitStrings(words); // now write the strings to a file, each on a separate line saveStrings("nouns.txt", list); Writes an array of strings to a file, one line per string. This file is saved to the sketch's folder, which is opened by selecting "Show sketch folder" from the "Sketch" menu. saveStrings(filename, strings) filename for output string array to be written loadStrings() loadBytes() saveBytes() 1.0 Function Core Extended