in reply to Re^5: Hash Question
in thread Hash Question

Ok that's cool, but I've placed it under the foreach and it's still showing errors:
foreach (<$ah>) for my $value (@text[11, 12, 14, 15, 19]) { my $nullval = ' '; my @text = split(/\t/); if ($bHash{ $text[3] } eq $value) { $bHash{ $text[0] } = $value; last; print OUT2 join( "\t", @text[1,2,3,4,11,5,6,8,7,11,12]),"\t$nullva +l\t$nullval\t$nullval\t$nullval\t$nullval\t$nullval\t$nullval\t$nullv +al\t$nullval\t$nullval\t1\t1\n"; }

Replies are listed 'Best First'.
Re^7: Hash Question
by choroba (Cardinal) on Jan 09, 2013 at 11:59 UTC
    OK, that's even cooler. You have to fix the syntax error in your part first, though. (Hint: missing left curly brace).
    لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ
      hey choroba, I've tried adding curly brackets but i still cannot figure out what the issue is, please help? Thank you

        hey choroba, I've tried adding curly brackets but i still cannot figure out what the issue is, please help? Thank you

        Have you read perlintro?

        for ( ... ) { # start something

            for ( ... ) { ... }

        } # end something