Help for this page

Select Code to Download


  1. or download this
    my @match;
    while (<>)) {
    ...
    } else {
        die("No match\n");
    }
    
  2. or download this
    my $match;
    while (<>)) {
    ...
    } else {
        die("No match\n");
    }