To avoid looping through $gettok(), I remembered the ability to use $* after tokenizing something:
This works well and results in:
Now I want to put a word at the end of each message:
tokenize 32 . ! -
say $* word
This also works well so far and results in:
<me> . word
<me> ! word
<me> - word
But I want to have the word right after the character without the space inbetween:
tokenize 32 . ! -
say $* $+ word
Now this is the part that fails and results in:
Now I do realize that $* is not even part of the help file, probably for several valid reasons,
but is there a way to make this above work the tokenize/$* way?
Thanks!