Help for this page

Select Code to Download


  1. or download this
    $match =~ /($start .*?) (?=$start)/xs;
    
  2. or download this
    $match =~ /($start (?: (?! $start ) .)*)/xs;
    
  3. or download this
    $match =~ /($start .*?) (?= $start | \Z)/xs;