Hi,
I've a set of CSV files that contain a scattering of UTF8 characters such as Ø, á, etc. I'm using Tie::Handle::CSV to read the data in for processing. I'm using Perl 5.8.8 and running (this) on Windows.
#!/usr/bin/perl
use strict;
use warnings;
use Encode;
use Tie::Handle::CSV;
my $dir = '.';
if (@ARGV > 0) {
$dir = $ARGV[0];
}
opendir DIR, $dir or die "Can't opendir '.': $!\n";
my @files = grep /\.csv$/i, readdir(DIR);
closedir DIR;
foreach my $file (@files) {
my $csv = Tie::Handle::CSV->new(file => "$dir/$file");
while (my $line = <$csv>) {
# do nothing, just loop...
}
}
This will spin until hitting a line with an "extended" character, whereupon the CSV.pm will echo the offending line to STDERR and the program will die.
The filehandle is opened within the module, so I can't get at it with binmode(). What am I to do?
Will all this go away if I just move all these files up to Unix where I have Perl 5.8.5 or thereabouts.
As always, your help is appreciated!
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.