Fellow Monks,
thanks to your help (see
Maybe Escape in Dynamic RegExps) I have been happy for quite while but now the fun is continued.
my $e = '\\' # kind of escape char
my $s = '\''; # this is a string to use for splitting
if(string_contains_newlines()) {
$s .= "\n"; # ?? right so?
}
my $re = "(?<!\Q$e\E)\Q$s\E";
$split_re = qr/$re/s;
That is to say: when the string to split contains newlines (or --more precisely--
$/) I need to split the string according to a new regular expression that takes the former separator (stored in
$s here) plus the newline character(s).
As you might guess, the above code doesn't work and I've run out of ideas what else to try.
Any hints or help appreciated.
Regards... |
Stefan
|
you begin bashing the string with a +42 regexp of confusion
|
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.