haz13 wrote:
I have tried both char and string separators but can't think of a way grab the data cleanly without including a " or , . I either end up with "apple" "orange" "pear" or "apple orange pear"
I used similar code to split it. Heres some code, maybe it can help u. Input text same as u : "apple","orange","pear" etc assume the string named "str"
string[] strArray = str.split(',');
for (int i=0;i
Training makes perfect....