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);
[download]
Comment on
Re: Pushing a delimiter into an array?
Download
Code
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!
[reply]
In Section
Seekers of Perl Wisdom