Help for this page

Select Code to Download


  1. or download this
    Name        reg       score1     score2 score3 score4
    a            1          2          3      3      4
    ...
    c            3          5          6      7      9
    d            4          6          0      2      8
    e            5          0          9      5      3
    
  2. or download this
    while (<DATA>) {
       ($1, $2, $3, $4, $5, $6) = split;
    ...
    # thus, score3 can be found as such:
       $hash{a}->[3];   # or with the other method:
       $hash{a}->{score3};