Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        $found = $1;
        print $found, "\n";
    }
    
  2. or download this
    my @lines = split /\n/, $temp;
    foreach my $idx ( 0 .. $#lines ) {
    ...
        print $found;
        last;
    }