Help for this page

Select Code to Download


  1. or download this
    sub decode_it {
    my $value = shift || '';
    ...
     $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;
    return $value;
    }
    
  2. or download this
    print "content-type: text/plain\n\n";