Help for this page

Select Code to Download


  1. or download this
    @array = ();
    
  2. or download this
    $line =~ $_
    
  3. or download this
    while($line = <FILEHANDLE>) {
     ...
    }
    
  4. or download this
    while (<FILEHANDLE>) {
      chomp;
      @array = split /\s+/;
      ...
    }