Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^5: Best Way To Parse Concordance DAT File Using Modern Perl?

by graff (Chancellor)
on Dec 11, 2012 at 07:22 UTC ( [id://1008223]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Best Way To Parse Concordance DAT File Using Modern Perl?
in thread Best Way To Parse Concordance DAT File Using Modern Perl?

Ah. What a pisser. I wonder if you could make Text::CSV_XS work by reading from STDIN... If so, you would just filter out all the BOM characters before feeding the data to your script:
perl -CS -pe 'tr/\x{feff}//d' < source_file.dat | your_csv_parser ...
Either that, or else redirect the output of that one-liner to create a cleansed version of the DAT file that has all the BOMs stripped out, and use that "bastardized" version of the data as input to the parser. (I assume that getting the data parsed is more important that preserving its obtuse fixation with BOM characters.)

Replies are listed 'Best First'.
Re^6: Best Way To Parse Concordance DAT File Using Modern Perl?
by Anonymous Monk on Dec 11, 2012 at 07:40 UTC

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (6)
As of 2024-04-18 15:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found