Help for this page

Select Code to Download


  1. or download this
    foreach my $line (@$array) {
    
  2. or download this
        chomp $line;
    
  3. or download this
    print "$line**";
    
  4. or download this
    my @array = split(/\t/, $line);
    
  5. or download this
    ...}
    
  6. or download this
    {
        local $/ = ""; # Set paragraph mode
        foreach my $line .............
        ....}
    }