Help for this page

Select Code to Download


  1. or download this
    foreach $line (@lines)
    {
        if($line =~ /test/)
    ...
            print "$line"
        };
    }
    
  2. or download this
    if ($line =~ /test/)
    {
        $line =~ s/<p>//g;
        print $line;
    }