up vote 1 down vote favorite
share [g+] share [fb]
#!/usr/bin/perl -w
use strict;

open (EVENTLOGFILE, "<eventlog.txt") || die("Could not open file eventlog file");
open (EVENTLOGFILE_NODATETIME, ">eventlog_nodatetime.txt") || die("Could not open new event log file");


my($line) = "";

while ($line = <EVENTLOGFILE>) {
 my @fields = split /[ \t]/, $line;
 my($newline) = "";
 my($i) = 1;

 foreach( @fields )
 {
  my($field) = $_;
  if( $i ne 3 )
  {
   $newline = $newline . $field;
  }

  $i++;
 }

 print EVENTLOGFILE_NODATETIME "$newline";
}

close(EVENTLOGFILE);
close(EVENTLOGFILE_NODATETIME); 

If I print out $line each time instead of $newline it can detect the encoding no problem. It's only when I try to modify the lines that it gets messed up.

link|improve this question

What kind of encoding is used in eventlog.txt? – Ether Sep 3 '10 at 20:23
it's just a standard text file – Brian T Hannan Sep 3 '10 at 20:26
I got it ... for some reason it was encoding funny. I just converted the input file to ANSI using notepad++ and that seems to solve the problem. – Brian T Hannan Sep 3 '10 at 20:30
feedback

1 Answer

up vote 1 down vote accepted

I guess it isn't encoding (as in say ISO 8859-1 vs UTF-8) but line-endings (CR, LF vs LF).

If you used chomp and printed "\n" you'd probably get line endings converted to platform native.

I think your script might be better written something like this (Untested):

#!/usr/bin/perl 
use strict;
use warnings;

open ($old, '<', 'eventlog.txt') or die 'Could not open eventlog.txt';
open ($new, '>', 'eventlog_nodatetime.txt') 
  or die 'Could not open eventlog.nodatetime.txt');

$\ = "\n";

while (<$old>) {
  chomp;
  s/^(\S+\s+\S+\s+)\S+\s+(.*)/$1$2/;
  print $new;
}

close $old;
close $new; 

Or

perl -pe 's/^(\S+\s+\S+\s+)\S+\s+(.*)/$1$2/' eventlog.txt >eventlog.nodatetime.txt

Or use a splice on a split? Or ...

link|improve this answer
nice, I like the one-liner. Perl is great in giving you the ability to do something so complex with so little code. However, it's extremely difficult to debug when you do that. – Brian T Hannan Nov 4 '10 at 20:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.