- or download this
joey___joey@yahoo.com
martha___martha@aol.com
- or download this
open (IN, "filename.txt") or die "can't open filename.txt!";
while ( $line = <IN> ) {
...
push @addresses, $parts[1];
}
close IN;
- or download this
$names[0]
- or download this
$addresses[0] - or download this
open (IN, "filename.txt") or die "can't open filename.txt!";
while ( $line = <IN> ) {
...
$hash{$name} = $address;
}
close IN;
- or download this
print "joey's address is ", $hash{"joey"}, ".\n";