- or download this
#!/usr/bin/perl -w
use strict;
...
}
print "\n";
}
- or download this
--A----<a@bob.com>--
--B----<B@b.org>--
--Calcutta----<O@thehorror.net>--
- 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";
}
- or download this
my @names;
while (my ($key, $value) = each %names){
push @names, "$key $value";
}
print join ', ',@names;