Help for this page

Select Code to Download


  1. or download this
    push @{$x[5]}, $value;
    
  2. or download this
    $value= pop @{$x[5]};
    
  3. or download this
    $value= shift @{$x[5]};
    
  4. or download this
    #access one value in row 5
    $n= $x[5][4]; 
    ...
      foreach $n ( @$row ) {
        
    }