Help for this page

Select Code to Download


  1. or download this
    $string = m/($start)(*)($end)/;
    print "$2";
    
  2. or download this
    $string =~ m/$start(.+?)$end/s;
    print $1;