Help for this page

Select Code to Download


  1. or download this
    sub validate_re {
      my $re = shift;
      eval { $re = qr/$re/ };
      return $@ ? undef : $re
    }