hi,
any idea how to change the time format from below data on 3rd & 4th column into milisecond (epoch), bcoz currently Datetime package is not installed in my machine.
source
ALL30 2191967708 201211020915 201303020923
expected result
ALL30 2191967708 1351822500000 1362190980000
#!/usr/bin/perl
use strict;
use warnings;
use DateTime;
use DateTime::Format::Strptime;
my $file = $ARGV[0] or die "Need to get CSV file on the command line\n
+";
my $outfile = "output_date.txt";
my $sum = 0;
open(my $data, '<', $file) or die "Could not open '$file' $!\n";
open (OUTFILE, "> $outfile") || die "ERROR: opening $outfile\n";
while (my $line = <$data>) {
chomp $line;
my @fields = split "\t" , $line, -1;;
my $formatter= new DateTime::Format::Strptime(pattern => '%Y%m
+%d%T');
my $sum1 = "$formatter->parse_datetime($fields[2])";
my $sum2 = "$formatter->parse_datetime($fields[3])";
$fields[2] = "$sum1";
$fields[3] = "$sum2";
# $line= print join( "\t", @fields ) . "\n" ;
print OUTFILE "@fields\n";
}
close ($data);
close (OUTFILE);
thanks
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|