If the line contains only the string
apple, and you split it on comma (line 16), the newline at the end of the line stays in
$line[0]. Therefore, the hash doesn't return anything for the key. Use
chomp to remove the newline:
#!/usr/bin/perl
use warnings;
use strict;
my %fruit;
open my $FRUIT, '<', 'fruit.csv' or die $!;
while (<$FRUIT>) {
my @line = split /,/;
my($fruit_name, $number) = @line;
$fruit{$fruit_name} = $number;
}
close $FRUIT;
open my $FRUITNAMES, '<', 'fruit_names.csv' or die $!;
while (<$FRUITNAMES>) {
chomp;
my @line = split /,/;
my $thefruitsname = $line[0];
warn ": $thefruitsname";
my $thenumber = $fruit{$thefruitsname};
print "the number of $thefruitsname is $thenumber\n";
}
Also use indentation, 3 argument open + or die, and strict as shown in the script.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.