Help for this page

Select Code to Download


  1. or download this
        my $matched_pattern;
        if (/$regex/) {
            $matched_pattern = $regex;
        };
    
  2. or download this
        my $regex = qr/foo/;
        $regex =~ /^(.+)$/ms; # fill $1 with $regex
        print $1;