Hi ww,

So why did the code I showed return true (or "foo")?"

The first part of my previous message with its two examples was intended to show with a simpler example on which sides of the binding operator each string should be.

The second part of my message was intended to show with three additional examples where the error was in your example and how to correct it.

Basically, since you put $str1 on the right side of the operator and did not quotemeta it and also did not escape the pipe characters, $str1 is interpreted as a regex and the pipe considered as an alternation within this regex. The "|L|D|" regex matches either an L, or a D, or any other character, so that in the end it matches pretty much anything.

Escaping the pipe characters ("\|L\|D\|"), or using the quotemeta \Q operator, as I did in my examples corrects the issue.


In reply to Re^5: Stupid question about strings... by Laurent_R
in thread Stupid question about strings... by kepler

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.