Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Sorting Tab file

by Kanji (Parson)
on Apr 25, 2002 at 06:18 UTC ( [id://161872]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my @Fld = ( split /\t/ )[0,4];
    my $col = 0;
    foreach my $token (@Fld) {
    
  2. or download this
    my @fld_no = qw( 0 4 );
    my $row    = 0;
     # ...
      foreach my $idx (@fld_no) {
        $worksheet->write($row, $col, $fld[$idx]);
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://161872]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-19 05:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found