in reply to RE: RE: Writing the contents of an array to a file
in thread Writing the contents of an array to a file
Cheers@a = qw{ one two }; @b = qw{ tre for }; { local $" = "-"; print "@a @b"; # one-two tre-for } { local $, = "-"; print @a, @b; # one-two-tre-for local $" = ":"; print "@a", "@b"; # one:two-tre:for }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(tye)RE: Writing the contents of an array to a file
by tye (Sage) on Sep 29, 2000 at 00:06 UTC |