Help for this page

Select Code to Download


  1. or download this
      sub { my @cels = split( /,/, $_[0], 8 );
            $cels[7] = '('. $cels[7] .')';
            print '<tr><td>'. join('</td><td>',@cels) ."</td></tr>\n" }
    
  2. or download this
    my $match = ( $name_pattern =~ /^(\w+)$/ ) ? $1 : "\\S":
    
    my @data = grep /$match/i, <FILE>;