This part of your code:
while (<FH>) { chomp $_; $a[$i]=$_; $i++; }
Can be rendered in a variety of briefer ways, briefest of which is probably:
@a = <FH>; # diamond operator in "list" (or array) context # will read all input records into array elements chomp @a; # chomp can work on a list
If there are other things you want to do while assigning input records to an array, you can keep the while loop, but without using the array index variable ($i):
while (<FH>) { chomp; # $_ is the default arg to chomp; # ... do other things to $_ if necessary ... push @a, $_; # add a new element at end of @a }
In terms of printing the array elements as a "joined set", you should just play with different things to see how they work -- try a few command lines like this:
perl -e '@a=qw/one two three four/; print @a,$/' perl -e '@a=qw/one two three four/; print "@a$/"' perl -e '@a=qw/one two three four/; print join(" ", map { "foo=$_" } +@a), $/'
R some more FMs and have fun with it.

In reply to Re: printing all elements of arrays by graff
in thread printing all elements of arrays by drock

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.