Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
( $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":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-20 09:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found