in reply to Loading a textfile into a hash
my %words =(); map { chomp; if (/([^:]+):[\s]+(.*)/) { $words{$1} = $2;} }<>; [download]