in reply to CSV Pattern Matching

Looks like you want to use Text::CSV (or Text::CSV_XS). Maybe even in combination with Spreadsheet::Read.


Enjoy, Have FUN! H.Merijn

Replies are listed 'Best First'.
Re^2: CSV Pattern Matching
by davido (Cardinal) on Apr 13, 2012 at 15:37 UTC

    Text::CSV is the more general solution. If Text::CSV_XS is installed on the user's system, Text::CSV will make use of it automatically. In fact, Text::CSV is just a wrapper around Text::CSV_PP (pure Perl), which comes with the Text::CSV distribution, and Text::CSV_XS, which should be installed separately.


    Dave