SOLVED! Simple school-boy error. Was an issue with Windows EOL instead of 'Nix. Thanks to those who attempted to assist :)

Hi guys, I'm having issues with something which should be extremely simple, but is completely doing my head in.

I'm reading in a data file, which consists of 5 fields, separated by colons. I need to add a couple of zeros at the end of two of the fields (they are date/time fields, which need to have the "seconds" added to them for compliance with importation rules). The first instance of me doing this works fine, but for some reason the second instance, on the last field, is doing some funky stuff.</>

So - this works for testing:

my $data_fix = "00"; while (<DATA>) { my($data1,$data2,$data3,$data4,$data5) = split(/:/); chomp($data5); $data5 = $data5 . $data_fix; $data_line = $data1 . ":" . $data2 . "00" . ":" . $data3 . ":" . $ +data4 . ":" . $data5 . "00" . "\n"; print $data_line; } __DATA__ o:200806050852:b7199767:b24211012077030:200902232359 o:201103251457:b6235734:b2421100997663:201204022359 o:201403101021:b8015840:b24211013181843:201404072359 o:201407291225:b8759124:b24211001018862:201408262359
OUTPUT: o:20080605085200:b7199767:b24211012077030:20090223235900 o:20110325145700:b6235734:b2421100997663:20120402235900 o:20140310102100:b8015840:b24211013181843:20140407235900 o:20140729122500:b8759124:b24211001018862:20140826235900

And this doesn't work:

my $data_fix = "00"; while (<>) { my($data1,$data2,$data3,$data4,$data5) = split(/:/); chomp($data5); $data5 .= $data_fix; $data_line = $data1 . ":" . $data2 . "00" . ":" . $data3 . ":" . $ +data4 . ":" . $data5 . "\n"; print $data_line; }
OUTPUT: (note the leading "o:" has been replaced with the "00" which i +s meant to be on the end of the last field, for some reason??) 0020080605085200:b7199767:b24211012077030:200902232359 0020110325145700:b6235734:b2421100997663:201204022359 0020140310102100:b8015840:b24211013181843:201404072359 0020140729122500:b8759124:b24211001018862:201408262359

What am I missing here, please??

UPDATE:

It would seem that it has something to do with the way I am accepting the data into the script. When running the script as shown above the the __DATA__ tag internal, it works fine. But when passing that exact same data in with a "cat" call, and changing my while(<DATA>) to while(<>), it breaks...

I'll clean up the above to hopefully simplify where I'm at now.


In reply to String concatenation issues with 00? by bobdabuilda

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.