Help for this page

Select Code to Download


  1. or download this
    #Store the file in an array, split by newlines
    while (<LOG>){
    ...
           }
    
    @array = split(/\n/, $string);
    
  2. or download this
    while (<LOG>){
           chomp;
           push( @array $_ );
           }