The documentation on
Text::ParseWords is pretty sparse, but looking at the
tests, it appears to me that it treats pairs of single-quotes (apostrophes) like an alternative to pairs of double-quotes (quotes). Since there is only one apostrophe, my guess is that it is not seeing the end-single-quote, and so not returning any list because of invalid data (in its opinion.
Oh, apparently I do have Text::ParseWords, so I tried it:
C:>perl -MText::ParseWords -le "print for quotewords ',', 0, qq(First,
+Second,Third) "
First
Second
Third
C:>perl -MText::ParseWords -le "print for quotewords ',', 0, qq(First,
+Second 'Line',Third) "
First
Second Line
Third
C:>perl -MText::ParseWords -le "print for quotewords ',', 0, qq(First,
+Second 'Line',it's not a bug) "
C:\usr\local\share>perl -MText::ParseWords -le "print for quotewords '
+,', 0, qq(First,Second 'Line',it's not a bug,it's a feature) "
First
Second Line
its not a bug,its a feature
C:>
Yep, quotewords recognizes apostrophes/single-quotes as quotes, so you cannot have unpaired apostrophes.
addendum: any reason you aren't using Text::CSV_XS for dealing with CSV? /addendum
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.