Help for this page

Select Code to Download


  1. or download this
    $_ = '1,,3,4,,,';       # a string of 7 possible values
      
    ...
            ++$count;
            print "Item $count is $_\n";
    }
    
  2. or download this
    $a[7] = undef;
    
    pop(@a);