Hi,

I have a pretty ugly text-processing question. I'm trying to match a string denoted as a boundary by MIME headers then use it as a variable to annotate the different sections of a multipart message. This would be fine, except for the fact that the boundary strings conatin lots of regular expression quantifiers and tend to look like

EB-002(.BhNa.RALxMe_ZRHLIBVcyn_4sgz+G(v

I tried backslashing the variable name for the boundary string like:

if (/^-+\$boundary/){<br>

but this never matched the following instances, although it did let me use the string without a bad regex error. Just for kicks, I also tried using a backslash on the input, since it has the same problematic characters, but it doesn't get evaluated as a regular expression, so that unsurprisingly had no effect.

My question then is "Is there a way to safely (and efectively) use strings that contain special regex characters as patterns to be matched, without knowing ahead of time when, where and which special characters will occur in the pattern?"



Thanks,
Mike O'Connell

In reply to safe regex variables by oconnelm

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.