just wondering in C you might get the first series of bytes as follows

(0xaaaaaaaabbbbbbbb>> 32) & 0xFFFFFFFF  >> result in 0xbbbbbbbb
(0xaaaaaaaabbbbbbbb>> 0) & 0xFFFFFFFF  >> result in 0xaaaaaaaa

how can this be achieve in julia

in julia I get 

(0xaaaaaaaaabcdef1234>> 32) & 0xFFFFFFFF  >> 0x00000000aaaaaaaa

how can I remove the leading zeros for formating purposes
tks

Reply via email to