DO you understand how the tokenizer works?
f.e a command could be
string , token , string etc
the token (any character of choice) will separate a string.
So by loading the raw string you can extract multiple strings from it
f.e
hello#cat#monkey#
if the token is # then the following strings can be extracted
hello, cat and monkey
hello is 1, cat 2 and monkey 3