UCLAdan06 has asked for the wisdom of the Perl Monks concerning the following question:
Perl Monks, I have only recently made the journey to Tibet and am new to this. My goal is to read numerical data from a .txt file into an excel workbook. When there are spaces in the .txt, the next value should go into the next data box on the workbook. I. e. 123 456 789 987 654 321: 123, 456, and 789 would be put in separate boxes horizontally- 987, 654, and 321 would be put in the next row horizontally.
my $excel_input_file= 'c:\begperl\data.new.txt'; my $workbook = Excel::Writer::XLSX->new('c:\begperl\data.xlsx'); my $worksheet = $workbook->add_worksheet(); my $worksheet2 = $workbook->add_worksheet(); open( my $in2, '<', $excel_input_file) or die "Can't open $excel_input +_file: $!"; open (my $out2, '>', $workbook) or die "Could not open file '$workbook +' $!"; #put stuff that reads txt file numerical data into excel # each value separated by space goes in next column #each new line from txt file goes in next row #close up shop close $in; close $out;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: .TXT to Excel
by GotToBTru (Prior) on Sep 20, 2016 at 20:14 UTC | |
|
Re: .TXT to Excel
by GrandFather (Saint) on Sep 20, 2016 at 21:09 UTC | |
by UCLAdan06 (Initiate) on Sep 21, 2016 at 13:54 UTC | |
by hippo (Archbishop) on Sep 21, 2016 at 14:26 UTC | |
|
Re: .TXT to Excel
by Laurent_R (Canon) on Sep 20, 2016 at 22:01 UTC | |
|
Re: .TXT to Excel
by AnomalousMonk (Archbishop) on Sep 20, 2016 at 20:02 UTC | |
|
Re: .TXT to Excel
by RonW (Parson) on Sep 22, 2016 at 19:08 UTC |