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;

In reply to .TXT to Excel by UCLAdan06

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.