Help for this page

Select Code to Download


  1. or download this
    my $regex = qr/\d\s+foo/;
    $some_string =~ /($regex)[^\r\n]*($regex)/;
    
  2. or download this
    my $regex = qr/\d\s+foo/;
    $some_string =~ /(?:$regex[^\r\n]*)*($regex)/;