in reply to Printing Array to a file
Hi
try $, = "YourSeperator";.
see Perl Special Variables Quick Reference.
Rata
Update After looking at the responses by Corion and chromatic:
my @x= (1,2,3,4,5); print @x; # uses $, print "@x"; # uses $" [download]