Re: Hash & CSV

2008-03-18 Thread Rob Dixon
JBallinger wrote: > On Mar 14, 3:26 pm, [EMAIL PROTECTED] (Manoj) wrote: >> When using Data: Dumper is taking more time for my 1 lines of CSV file. This solved a few queries...and the benchmark was a new value addition for me. Thanks 2) Is there any optimal method for reading a CSV fi

Re: Hash & CSV

2008-03-18 Thread Prabu Ayyappan
- Original Message From: JBallinger <[EMAIL PROTECTED]> To: beginners@perl.org Sent: Monday, March 17, 2008 9:18:12 PM Subject: Re: Hash & CSV On Mar 14, 3:26 pm, [EMAIL PROTECTED] (Manoj) wrote: > When using Data: Dumper is taking more time for my 1 lines of CSV file.

Re: Hash & CSV

2008-03-17 Thread JBallinger
On Mar 14, 3:26 pm, [EMAIL PROTECTED] (Manoj) wrote: > When using Data: Dumper is taking more time for my 1 lines of CSV file. > This solved a few queries...and the benchmark was a new value addition for > me. Thanks > > 2)       Is there any optimal method for reading a CSV file and put to > h

RE: Hash & CSV

2008-03-14 Thread Manoj
Subject: Re: Hash & CSV Prabu Ayyappan wrote: > > From: Manoj <[EMAIL PROTECTED]> >> >> Have a CSV file with the first column as unique which I am taking as hash >> key and rest of the line as hash value. I am opening the file and putting to >> has

Re: Hash & CSV

2008-03-13 Thread John W. Krahn
John W. Krahn wrote: Prabu Ayyappan wrote: From: Manoj <[EMAIL PROTECTED]> Have a CSV file with the first column as unique which I am taking as hash key and rest of the line as hash value. I am opening the file and putting to hash after reading each line. There are two questions from me. 1

Re: Hash & CSV

2008-03-13 Thread John W. Krahn
Prabu Ayyappan wrote: From: Manoj <[EMAIL PROTECTED]> Have a CSV file with the first column as unique which I am taking as hash key and rest of the line as hash value. I am opening the file and putting to hash after reading each line. There are two questions from me. 1) How to find th

Re: Hash & CSV

2008-03-13 Thread Prabu Ayyappan
- Original Message From: Manoj <[EMAIL PROTECTED]> To: beginners@perl.org Sent: Friday, March 14, 2008 12:09:42 AM Subject: Hash & CSV Hello list, Have a CSV file with the first column as unique which I am taking as hash key and rest of the line as hash value. I am openin

Hash & CSV

2008-03-13 Thread Manoj
Hello list, Have a CSV file with the first column as unique which I am taking as hash key and rest of the line as hash value. I am opening the file and putting to hash after reading each line. There are two questions from me. 1) How to find the performance and time taken by Perl scri