Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    
    ...
            }
            print "\n";
    }
    
  2. or download this
    --A----<a@bob.com>--
    --B----<B@b.org>--
    --Calcutta----<O@thehorror.net>--
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    my $test='A <a@bob.com>, B <B@b.org>, Calcutta <O@thehorror.net>';
    ...
    foreach my $name (keys (%names)) {
            print "$name==$names{$name}\n";
    }
    
  4. or download this
    my @names;
    while (my ($key, $value) = each %names){
            push @names, "$key $value";
    }
    print join ', ',@names;