<DIV>Hello, I'm having a bit of trouble resizing/reshaping an array of strings. here's what I'm trying to do:</DIV>
<DIV> </DIV>
<DIV>myString = ['hi','my','name','is','Jeff']</DIV>
<DIV>reshape(myString, (2,2))</DIV>
<DIV> </DIV>
<DIV>What I get from this is something like:</DIV>
<DIV> </DIV>
<DIV>[['h','i'],</DIV>
<DIV>['m','y']]</DIV>
<DIV> </DIV>
<DIV>What I want is:</DIV>
<DIV>[['hi','my'],</DIV>
<DIV>['name','is']]</DIV>
<DIV> </DIV>
<DIV>How might this work best?</DIV>