Help for this page

Select Code to Download


  1. or download this
        my @codes = unpackEmail( $input );
    
  2. or download this
        use HTML::Entities;
        my @codes = map{ encode_entities( $_, '\x00-\xff' ) } split//, $in
    +put;
    
  3. or download this
    my $link = '<a href="mailto:' . "$mailto" . 
                     '">' . "$mailto</a>";
    ...
    # to this:
    
    my $link = a( { -href => $mailto }, $mailto );