Help for this page

Select Code to Download


  1. or download this
    $ret = $1 if $g =~ /\n\s*\n((?m:^#.*\n)+)$id/;
    
  2. or download this
    /\n\s*\n        # This matches your blank line between comments.
     (              # Capture into $1.
    ...
     )              # End of $1 capture.
     $id            # This is the key you're looking for.
    /x