Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
You surely *can* split the record in one go -

Version 1 - '\' escaped quotes:
use strict; use Data::Dumper; while (<DATA>) { chomp; my @rec; # was - foreach (split /"(.*,.*)"|,/) ... foreach (split /"((?:\\"|.)*?)"|,/) { push @rec, $_ if $_ } print Dumper(\@rec); } __DATA__ 1,"Hello, world",This is good,2 121212,"Simpson, Bart",Springfield,"Roger" 121212,"2\" tape, \"white",springfield,"Roger" 121212,"Simpson \", Bart",Springfield,"Roger"
And the output is -
$VAR1 = [ '1', 'Hello, world', 'This is good', '2' ]; $VAR1 = [ '121212', 'Simpson, Bart', 'Springfield', 'Roger' ]; $VAR1 = [ '121212', '2\\" tape, \\"white', 'springfield', 'Roger' ]; $VAR1 = [ '121212', 'Simpson \\", Bart', 'Springfield', 'Roger' ];
Update: There was a minor flaw in the original solution, I did not search for escaped quotes inside the quote, here's the enhanced version.

Version 2 - '"' escaped quotes:
use strict; use Data::Dumper; while (<DATA>) { chomp; my @rec; foreach (split /"(.*?)(?:(?<!")"(?!")|(?<="")"(?!"))|,/) { s/""/"/g, push @rec, $_ if $_ } print Dumper(\@rec); } __DATA__ 1,"Hello, world",This is good,2 121212,"Simpson, Bart",Springfield,"Roger" 121212,"2"" tape, ""white",springfield,"Roger" 121212,"Simpson "", Bart",Springfield,"Roger" 121212,"2""",springfield,"Roger"
And output is -
$VAR1 = [ '1', 'Hello, world', 'This is good', '2' ]; $VAR1 = [ '121212', 'Simpson, Bart', 'Springfield', 'Roger' ]; $VAR1 = [ '121212', '2" tape, "white', 'springfield', 'Roger' ]; $VAR1 = [ '121212', 'Simpson ", Bart', 'Springfield', 'Roger' ]; $VAR1 = [ '121212', '2"', 'springfield', 'Roger' ];
Update: Thanks to antirice to point out that the quotes are escaped by quote ("), not backslash (\) inside the quote.


In reply to Re: regular expression (search and destroy) by Roger
in thread regular expression (search and destroy) by data67

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (7)
As of 2024-04-23 13:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found