Help for this page

Select Code to Download


  1. or download this
    my $re = qr/some(thing)?/;
    print ref $re;
    
  2. or download this
    my $matches;
    if (ref $value eq 'Regexp')
    ...
    {
        $matches++ if ($param_value eq $value);
    }