I'm not sure why you're promoting single delimiters into multiples of the same character. It seems to me that would make things more difficult rather than easier. You probably want to use something that's not in your data at all. I'm guessing you're wanting the '!' rather than the more usual '\' because you're wanting to avoid escaping your escape in Perl or because you're dealing with a data format that someone else already set.

Here's a quick poke at what you describe, although if you get any fancier than this you'd probably want to work on a real (if minimal) parser.

while ( <> ) { chomp; s/!;/\x001/g; s/;/\x000/g; s/\x001/;/g; s/!!/!/g; @a = split /\x000/; print '{' . (join '}{', @a) . "}\n"; } __END__ foo;bar;baz fred!;flintstone;barney!!rubble eggs!;spam!;toast!;spam;bacon!!;eggs!;spam!!toast!;spam;spamspam!!eggs +!!;spam

Which prints:

{foo}{bar}{baz} {fred;flintstone}{barney!rubble} {eggs;spam;toast;spam}{bacon!;eggs;spam!toast;spam}{spamspam!eggs!;spa +m}


In reply to Re: split on delimiter unless escaped by mr_mischief
in thread split on delimiter unless escaped by yrp001

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



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.