Help for this page

Select Code to Download


  1. or download this
    for my $line (@data_in_the_file) 
                    {
                            my @fields = split(/\Q|\E/gm, $line);
    ...
                            }
                            print "<br>______";
                  }
    
  2. or download this
    for my $line (@data_in_the_file) 
                    {
    ...
                            print "<br>______" if ($line =~ m/\|/);
                  }
    
  3. or download this
    if ($line =~ m/\|/);