Re: parsing CSV files with control and extended ASCII characters

2008-05-06 Thread Jenda Krynicky
From: David Newman <[EMAIL PROTECTED]> > However, it doesn't answer the root question, namely how to parse text > that contains Western European characters such as accents and umlauts. > > I see from the Text::CSV documentation that this module handles only > characters between 0x20 and 0x7e. I

Re: parsing CSV files with control and extended ASCII characters

2008-05-06 Thread Gunnar Hjalmarsson
David Newman wrote: On 3/20/08 5:05 PM, Gunnar Hjalmarsson wrote: David Newman wrote: I have some CSV input files that contain control and extended ASCII characters, The Text::CSV or Tie::Handle::CSV modules don't like these characters; the snippets below both return errors when they get t

Re: parsing CSV files with control and extended ASCII characters

2008-05-06 Thread David Newman
On 3/20/08 5:05 PM, Gunnar Hjalmarsson wrote: David Newman wrote: I have some CSV input files that contain control and extended ASCII characters, The Text::CSV or Tie::Handle::CSV modules don't like these characters; the snippets below both return errors when they get to one. my $csv =

Re: parsing CSV files with control and extended ASCII characters

2008-03-20 Thread Gunnar Hjalmarsson
David Newman wrote: I have some CSV input files that contain control and extended ASCII characters, The Text::CSV or Tie::Handle::CSV modules don't like these characters; the snippets below both return errors when they get to one. my $csv = Text::CSV->new(); In the docs for Text::CSV,

parsing CSV files with control and extended ASCII characters

2008-03-20 Thread David Newman
I have some CSV input files that contain control and extended ASCII characters, including: - vertical tabs (0x0B) - acute and grave accents - tildes - circumflexes - umlauts - nonbreaking spaces (0xA0) The Text::CSV or Tie::Handle::CSV modules don't like these characters; the snippets bel