Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -wTR
    use strict;
    ...
    print $gateway $expiry;       # ALLOWED
    
    $foo++;       # Still of CreditCard type...
    
  2. or download this
    restrict CreditCard, CreditCardGateway;
    filter CreditCard, \&clean_credit_card;
    ...
        $restricted = s/.{12}/./;  # replace 12 digits with .s 
        return $restricted;
    }