http://qs321.pair.com?node_id=1080344


in reply to Pushing a delimiter into an array?

Do you really need the tabs in the array? If you just want to print the values separated by tabs do
print join("\t", @array);

Replies are listed 'Best First'.
Re^2: Pushing a delimiter into an array?
by rnaeye (Friar) on Mar 31, 2014 at 02:18 UTC
    Great advice thanks. I just needed to print them!