Ok, I
think I know where you are getting at (correct me if I am wrong). You want to wrap the text of two separate strings, but want them put into separate string arrays? If so, GS2 makes that super easy.
PHP Code:
tokens1 = wraptext2(zoom, width, delims, String1);
tokens2 = wraptext2(zoom, width, delims, String2);
//Of course, edit the arguments
Anyways, that would take String1 and String2, wrap their text and put it into 'tokens1' and 'tokens2', respectively.