( $chapter =~ /5/ )  and ( $chapter = 5 ); The second part of the "and" seems to be assigning "5" to $chapter but I'm normally used to the first part as being "If $chapter matches 5 then do something".

Yes, your interpretation is correct. Perl's low-precedence boolean operators and/or/etc. can be used in place of if conditionals; the statement you showed is the equivalent of if ( $chapter =~ /5/ ) { $chapter = 5 } (and could arguably be written this way for better readability*). =~ is the binding operator in this case saying to match the regex on its right to the string on its left, and = is a simple assignment.

* Yet another way to write that is using Statement Modifiers: $chapter = 5 if $chapter =~ /5/;, if you find that more readable. In fact, this is what Perl optimizes the above statement to:

$ perl -MO=Deparse -e '( $chapter =~ /5/ ) and ( $chapter = 5 );' $chapter = 5 if $chapter =~ /5/;

Note that I'd say the only difference between the statements being discussed here is readability, so since you had to ask about the syntax, you may prefer to rewrite the statement in one of the above forms if that helps you to be able to read the code more easily.


In reply to Re: Purpose of =~ and = in this statement by haukex
in thread Purpose of =~ and = in this statement by sherab

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.