Help for this page

Select Code to Download


  1. or download this
    ^L ( identifies beginning of record in file)
    
    ...
    
    
    (EOE) - which is end of record marker
    
  2. or download this
    <account#><name><address><city state zip><begin-period-date><end-perio
    +d-date>
    
  3. or download this
    open(ADDRESSIN, "filename") || die "could not open file for read: $!\n
    +";
    while($line = <ADDRESSIN>)
    ...
    "this is where I need help"
    $line1 = <name>
    $line2 = <address>
    
  4. or download this
    printf "%-40s%-40s\n", $line1, $line2,$line3;