Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^2: Extract column of excel

by MynameisAchint (Novice)
on Jun 04, 2013 at 05:46 UTC ( [id://1036897]=note: print w/replies, xml ) Need Help??


in reply to Re: Extract column of excel
in thread Extract column of excel

#!/bin/perl -w use strict; #variables you can change to suit your needs my $column_separator = ","; my $column_number = "8"; $column_number--; my $file="Working_On.csv"; open(FILE,"<","$file"); my @lines=<FILE>; close FILE; foreach my $line (@lines){ my @columns = split(/$column_separator/,"$line"); print $columns[$column_number],"\n"; }
This code is working but the problem is that it does not take the entire column it truncates the column , if anyone can look why the code does not take the entire column . thanks

Replies are listed 'Best First'.
Re^3: Extract column of excel
by hdb (Monsignor) on Jun 04, 2013 at 07:29 UTC

    While barely readable your code suggests that you are processing a CSV file, not an Excel file. This is quite a different question.

    Can you please specify in which way the column is truncated? Are you not getting all rows or are entries somehow garbled? Again, quite different approaches would be required.

      Yes I am working on csv file , the truncation is such that the entries are taken in the correct sequence but they are taken from somewhere in between not from the starting

        How about an example?

Log In?
Username:
Password:

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

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

    No recent polls found