in reply to Re (tilly) 5: Dynamic array names
in thread Dynamic array names

Had I been responding to you and not arturo (heh), I would have chomped the input data first, used a comma instead of a tab and a negative LIMIT argument to split to preserve trailing null fields. Did I miss anything else?

I might also have used /[^,\n]+/ in that map instead of a *, which introduces spurious empty fields by succeeding emptily upon encountering a delimiter.

Replies are listed 'Best First'.
Re (tilly) 7: Dynamic array names
by tilly (Archbishop) on Feb 10, 2001 at 04:18 UTC
    You didn't stop soon enough. :-)

    You got it all, but you missed the point of the *. With a + you again lose the trailing null fields, which is why I put it in in the snippet...