+ 1
The use of delimiters can be used to specify "break points" in a string for example...
Yes,no,yes,yes,no
The delimiter here would be "," and you can tell the code that you have one long string and want to split it into an array and "," is the "thing" seperating the words. So you would end up with an array of 5 items containing the sequence above



