"11001001101000000100010101"
"00111000000011010000101011"
AND
= 00001000000000000000000001
Binary representation:
"11001001101000000100010101" = > 0b11001001101000000100010101
"00111000000011010000101011" = > 0b00111000000011010000101011
Two strings but value looks like binary and I want to Bitwise And Operator of two binary.
How to convert string to binary?
Intor aString?resvariable in Joakim Danielson's solution is what you need.