Help for this page

Select Code to Download


  1. or download this
    sub late_mod
    {
    ...
    
        return ($string =~ /$regex/s);      # <= 's' modifier
    }
    
  2. or download this
    $ perl -le'
    my $pattern = q/fox.+?jumps/;
    ...
    print $regex;
    '
    (?-xism:fox.+?jumps)