Help for this page

Select Code to Download


  1. or download this
    print $col,"\n"; ## string of all the columns I am interested in
    ...
    ...
                         # $line is a string and not numeric..
                         # It works if you do
                         # @line[1,2,5,6,70,71,75,100,112,114]
    
  2. or download this
    #!/usr/bin/env perl -l
    
    ...
    my @wanted_elements = @line[@indices];
    
    print "Wanted elements: @wanted_elements";
    
  3. or download this
    All line elements: A B C D
    Indices I want: 2,3
    Wanted elements: C D