im not sure what i was talking about... must have been one of those things where i thought i had a good idea but i ddint. i think i wanted to reverse the tokenizing of a string so something like
/untokenize c[,c] text
tokenize 32 a s d f
$1: a
$2: s
$3: d
$4: f
untokenize 32 $1-
$1: a s d f
tokenize 46 a.s d.f
$1: a
$2: s d
$3: f
untokenize 46,32 $1-
$1:a.s
$2:d.f
so like it would like return it to the orginal string, then tokenize 32 the recovered string