Help for this page

Select Code to Download


  1. or download this
    Examples:
    $count = scalar(@matrix);
    ...
    $count_of_first_row = scalar(@{$matrix[0]});  # scalar() is optional h
    +ere.
    $first_field_of_second_row = $matrix[1][0];
    $first_field_of_second_row = $matrix[1]->[0]; # this is what you are r
    +eally doing.