Help for this page

Select Code to Download


  1. or download this
    ($a,$b,$c) = \(@array[3,5,7]);
    
  2. or download this
    $$a =~ s/^\s+//; # remove leading white space from $array[3]
    $$b =~ s/\s+$//; # and trailing ws from $array[5]
    $$c++; # incremnt $array[7]
    
  3. or download this
    @y = \(@array[2..4,9]);