Help for this page

Select Code to Download


  1. or download this
    while(  /foo(.*?)(tar)?bar/g  ) {
        next   unless $2;
        ...
    }
    
  2. or download this
    my( $state, $prev, @match )= ( "no foo" );
    foreach my $tok (  split /(foo|tarbar|bar)/, $string  ) {
    ...
        }
        $state= "no foo";
    }