There are several problems with your code.
open(INFO,"$score" ); # you need to check to see if this failed or not open(INFO,"$score" ) or die "failed to open $score\n"; open(INFO2,"$player" ) or die "failed to open $player\n"; @score = split(/[,]/,$_); # you have a useless character class and # split uses $_ if nothing is specified # this is not actually wrong it is just good + style @score = split(/,/); # but the split is not working on the file # you think it is. # This is splitting $_ from INFO2 which is t +he player file. # It looks like you want the score file. # This confusion most likely brought on by y +our # inconsistant indentation style if ($total[$index] == $score[0]) # You never increment $index. it's al +ways 0 $total++; # I think you meant $index but you created a # new var called $total and incremented it

As you notice you have many things to fix. You will hear quite a few monks harp about use warnings (-w), use strict and check file open's, the reason is simple every one of your errors would have been evident if these checks were in place.



grep
Unix - where you can thrown the manual on the keyboard and get a command


In reply to Re: help with extracting data by grep
in thread help with extracting data by perlinacan

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.