1. Here’s one way to do it:

    $file = shift || die "usage: $0 filename";
    open(F, $file) || die "open: $!";
    while (<F>) {
      ($user, $company, $email) = split /:/;
      write;
    }
    format STDOUT =
    @<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<<<<<<<< @<<<<<<<<<<<<<<<<
    $user,          $company,                $email
    .

    The second line opens the file. The while loop processes the file line-by-line. Each line is torn apart (with colon delimiters), which loads up the scalar variables. The final statement of the while loop invokes write to display all of the data.

    The format for the STDOUT filehandle defines a simple line with three fields. The values come from the three scalar variables that are given values in the while loop.

  2. Here’s one way to do it:

    # append to program from the first problem...
    format STDOUT_TOP =
    User            Company                  Real Name
    ==============  =======================  =================
    .

    All you need to get page headers for the previous program is to add a top-of-page format. Here, we put column headers on the columns.

    To get the columns to line up, we copied the text of format STDOUT and used overstrike mode in our text editor to replace @<<< fields with ==== bars. That’s the nice thing about the one-character-to-one-character correspondence between a format and the resulting display.

  3. Here’s one way to do it:

    # append to program from the first problem...
    format STDOUT_TOP =
    Page @<<<
    $%
    
    User            Company                  Real Name
    ==============  =======================  =================
    .

    Well, here again, to get stuff at the top of the page, we’ve ...

Get Learning Perl on Win32 Systems now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.