Help for this page

Select Code to Download


  1. or download this
    my $match = 0;
    my $result;
    ...
      if(/Match String/) { $match = 1 }
      elsif($match && /something/) { $reult = $1; last; }
    }
    
  2. or download this
    my $result;
    map { if(/something)/) { $result = $1 } } split /\n/, $content;