New text / CSV / TSV / etc. parser library

damn, you've been busy :wink:. Nice work!

Just adapted the Serial input basics example (Serial Input Basics - updated - #3 by Robin2) to include the library, and it seems to work great + way cleaner looking and versatile!

void parseData() {      // split the data into its parts

  TextParser parser(",");

  parser.parseLine(tempChars, messageFromPC, integerFromPC, floatFromPC);

}

simulation link:

However, in the example above. If one of the words is longer than 5 characters and/or if there's 6 words in total, can that cause the char array to be accessed "out of bounds", or are the extra characters/words just ignored?