Help for this page

Select Code to Download


  1. or download this
    use Tie::Constrained qw/detaint/;
    tie my $var, 'Tie::Constrained', sub {
        my $re = qr/whatever/;
        $_[0] =~ /$re/ and &detaint;
    };
    
  2. or download this
    $var = $tainted_thing;