How to slice/split a string by delimiter

@benskylinegodzilla, it is not a good idea to use the String (capital S) class on an Arduino as it can cause memory corruption in the small memory on an Arduino. Just use cstrings - char arrays terminated with 0.

The parse example in Serial Input Basics should get you started.

...R