Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re^6: Speeds vs functionality

by Jim (Curate)
on Aug 01, 2014 at 01:38 UTC ( [id://1095829]=note: print w/replies, xml ) Need Help??


in reply to Re^5: Speeds vs functionality
in thread Speeds vs functionality

Booyah! farang FTW!

Here's my test with a very lightly refactored version of the same script:

use v5.14;
use strict;
use warnings;
use utf8;

use Text::CSV_PP;

binmode STDOUT, ':encoding(UTF-8)';

my $csv = Text::CSV_PP->new({
    sep_char    => '🎬',
    quote_char  => '🎥',
    escape_char => '🎥',
    binary      => 1,
});

my @rows;

my $fh = *DATA;

while (my $row = $csv->getline($fh)) {
    push @rows, $row;
}

$csv->eof() or $csv->error_diag();

for my $row (@rows) {
    $row->[4] =~ s/\n\s*/, /g;

    printf "%-24s %s\n", $row->[0], $row->[4];
}

exit 0;

__DATA__
🎥Film🎥🎬🎥Year🎥🎬🎥Awards🎥🎬🎥Nominations🎥🎬🎥Director🎥
🎥12 Years a Slave🎥🎬2013🎬3🎬9🎬🎥🎥🎥 Steve McQueen🎥
🎥Argo🎥🎬2012🎬3🎬7🎬🎥🎥🎥 Ben Affleck🎥
🎥The Artist🎥🎬2012🎬5🎬10🎬🎥🎥🎥 Michel Hazanavicius🎥
🎥The King's Speech🎥🎬2010🎬4🎬12🎬🎥🎥🎥 Tom Hooper🎥
🎥The Hurt Locker🎥🎬2009🎬6🎬9🎬🎥🎥🎥 Kathryn Bigelow🎥
🎥Slumdog Millionaire🎥🎬2008🎬8🎬10🎬🎥🎥🎥 Danny Boyle🎥
🎥No Country for Old Men🎥🎬2007🎬4🎬8🎬🎥🎥🎥 Joel Coen
🎥🎥 Ethan Coen🎥
🎥The Departed🎥🎬2006🎬4🎬5🎬🎥🎥🎥 Martin Scorsese🎥

This correctly produces:

Film                     Director
12 Years a Slave         🎥 Steve McQueen
Argo                     🎥 Ben Affleck
The Artist               🎥 Michel Hazanavicius
The King's Speech        🎥 Tom Hooper
The Hurt Locker          🎥 Kathryn Bigelow
Slumdog Millionaire      🎥 Danny Boyle
No Country for Old Men   🎥 Joel Coen, 🎥 Ethan Coen
The Departed             🎥 Martin Scorsese

Notice that this version handles the literal newline (\n, CR-LF) in the Coen brothers record, which I change to ',' in the output.

Thank you, farang. I stand corrected:  there is a Unicode-capable CSV parser/generator Perl module on CPAN. And I think you just solved a very long-lived problem for me.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1095829]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (5)
As of 2024-03-28 13:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found