Help for this page

Select Code to Download


  1. or download this
        ( $match )= $string =~ /($pattern)/;
  2. or download this
    package Stream::Match;
    
    sub new {
    ...
    while(  $string= $o->nextMatch()  ) {
        print "$string\n";
    }
    
  3. or download this
    __END__
    # This is the code I originally posted
    ...
    while(  $string= $o->nextMatch()  ) {
        print "$string\n";
    }