Thats great and thank you very much for your help. I have one further issue though. My existing code now looks like this
#!/usr/bin/perl
use 5.010;
use strict;
use warnings;
while (my $line = <STDIN>) {
chomp($line);
my ( $mon, $day, $time, $dom, $login, $remainder ) =
split m{:?\s+}, $line, 6;
my %monthNos = do {
my $no = 0;
map { $_ => ++ $no }
qw{ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec };
};
my $yr = q{2012};
my $csv = sprintf q{%02d/%02d/%s %s,%s,%s,"%s"},
$day, $monthNos{ $mon }, $yr, $time, $dom, $login, $remainder;
say $csv;
}
As I wanted the remainder to be in double quotes so it would read in as one field. The problem is that remainder sometimes already contains double quotes which I would like to remove or replace with single quotes
I tried the following but it leaves be with an empty set of double quotes
my $remainder =~ s/""\"\""/\'/g;
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.
|
|