Help for this page

Select Code to Download


  1. or download this
        my %key = (
        '1'=>'?', '2'=>'/', '3'=>'>', '4'=>'<', '5'=>':', '6'=>';',
    ...
           '('=>'5', ')'=>'3', '-'=>'2', '+'=>'9', '='=>'%', '\\'=>'c',
           '|'=>'1', '~'=>'^'
    );
    
  2. or download this
    sub decode {
        my $char;
    ...
           $$message->{body} =~ s/$meta/$char/gis;
        }
    }
    
  3. or download this
        my $char;
        my $meta;
    ...
           $meta =quotemeta $char;
           $$message->{body} =~ s/$meta/$key{$char}/gis;
        }