Help for this page

Select Code to Download


  1. or download this
    @array = <$fh>;  # Reads all lines into array
    $singleLine = <$fh>; # reads one line only
    
  2. or download this
    my @count = $w =~ /$x/g;
    my $total = @count;