Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Issue with Loop when Apostrophe in Field

by pryrt (Abbot)
on Oct 01, 2020 at 18:53 UTC ( [id://11122429]=note: print w/replies, xml ) Need Help??


in reply to Issue with Loop when Apostrophe in Field

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

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (4)
As of 2024-04-25 10:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found