Help for this page

Select Code to Download


  1. or download this
    /^somebegin(?!something)someend$/
    
  2. or download this
    if ( /^somebegin(.*)someend$/ ) {
        my $middle = $1;
    ...
            # woot
        }
    }