Help for this page

Select Code to Download


  1. or download this
    for my $element (@array) {
       my @bits = split "\t", $element;
       #do something with the bits.
    }
    
  2. or download this
    for my $index (0 .. $#array) { # $#array is the numer of the highest e
    +lement.
       my @bits = split "\t", $array[$index];
    }