Help for this page

Select Code to Download


  1. or download this
      @data = <RI>;
      chomp(@data);
    
  2. or download this
      while ($line = <RI>) {
        chomp $line;
        ...
      }
    
  3. or download this
    for ( split /\n(?=\S)/, $line )
    
  4. or download this
    for my $line (@lines) {