Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Operate with bits

by GrandFather (Saint)
on Mar 11, 2020 at 08:31 UTC ( [id://11114117]=note: print w/replies, xml ) Need Help??


in reply to Operate with bits

Easy - use the bitwise and operator (Bitwise And):

use strict; use warnings; for my $pattern (0xffd1, 0x0060, 0x0040, 1 << 6, 0xff8f) { if ($pattern & (1 << 6)) { printf "Bit 6 set in %04x\n", $pattern; } else { printf "Bit 6 not set in %04x\n", $pattern; } }

Prints:

Bit 6 set in ffd1 Bit 6 set in 0060 Bit 6 set in 0040 Bit 6 set in 0040 Bit 6 not set in ff8f
Optimising for fewest key strokes only makes sense transmitting to Pluto or beyond

Replies are listed 'Best First'.
Re^2: Operate with bits
by syedasadali95 (Acolyte) on Mar 11, 2020 at 11:37 UTC

    Thank you for this suggestion

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11114117]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (5)
As of 2024-04-23 07:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found