I need to parse CSV files in the UTF-16LE encoding of Unicode. Here are the metacharacters used in the UTF-16LE CSV files:
- separator is U+0014 (\x14\x00)
- quote is U+00FE (\xFE\x00)
- escape is U+00FE (\xFE\x00)
There are no embedded newlines. Lines are terminated by "a carriage return and line feed pair (ASCII/CRLF=0x0D 0x0A)" (to quote from the Text::CSV_XS documentation). Actually, the line terminators in UTF-16LE are U+000D U+000A (\x0D\x00 \x0A\x00).
The UTF-16LE files have byte-order marks in them.
I'm using Perl 5.10.0; specifically, build 1005 of ActivePerl under Windows XP SP2. I have these modules installed:
What module should I use to parse these CSV files?
Can someone please provide me a jumpstart? How do I use these modules to parse these UTF-16LE CSV files? I'm a little confused by the multiple modules and their documentation, despite this informative thread from last month.
Thanks!
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.