I think he means your two examples above are
identical except for the missing 2 and shifted 3.

Yours
//tokenize 44 1,2,3 | echo -a $1 - $2 - $3 == 1 - 2 - 3
//tokenize 44 1,2,3 | echo -a $1 - $2 - $3 == 1 - 3 -

Did you mean it to be?..
//tokenize 44 1,2,3 | echo -a $1 - $2 - $3 == 1 - 2 - 3
//tokenize 44 1,,3 | echo -a $1 - $2 - $3 == 1 - 3 -
1 - 3 - == 1 - 3 -

or?..
//tokenize 44 1,2,3 | echo -a $1 - $2 - $3 == 1 - 2 - 3
//tokenize 44 1, ,3 | echo -a $1 - $2 - $3 == 1 - 3 -
1 - - 3 == 1 - 3 -

Last edited by mIRCManiac; 17/10/05 03:46 PM.