Operator && is logical and, not bitwise, which is '&'. Logical && is the correct choice for what you're doing. See perlop for details, but it acts [almost] like the C operator of the same name. The left argument is evaluated. If false, the right argument is ignored and the whole && expression returns false. If the left evaluates true, the right hand argument is evaluated and that result returned.

Your code is correct as far as perl goes, though the '$_ =~' is unneeded - $_ is the default argument for m//. You will get some surprises, however, when $service[0] is numeric and $_ contains a dotted quad ip matching the service you're looking for. A single regex containing more context is in order, or else perhaps a split to a predictable array.

Update: Doh! dws is on the money with the operator precedence issue.

After Compline,
Zaxo


In reply to Re: I'm confused with Bitwise Operators by Zaxo
in thread I'm confused with Bitwise Operators by Anonymous Monk

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.