andrei0x309 Posted March 11, 2010 Posted March 11, 2010 Hi $bin = binary(75) gives me 0x4B000000 anyone knows a way or can help me with a function that can convert form a binary representation ( 0x4B000000 ) to a integer( 75 ) . i`v searched but did not find anything useful ... and i think it would be great to include a function for this in the next version since BinaryToString already exists .
bogQ Posted March 11, 2010 Posted March 11, 2010 from help file maby? StringToBinary() BinaryToString() TCP server and client - Learning about TCP servers and clients connectionAu3 oIrrlicht - Irrlicht projectAu3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related) There are those that believe that the perfect heist lies in the preparation.Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.
wraithdu Posted March 11, 2010 Posted March 11, 2010 (edited) oops, n/m, misinterpreted. Edited March 11, 2010 by wraithdu
Rkey Posted March 11, 2010 Posted March 11, 2010 (edited) if you want to convert integer - binary - integer you can use the number() function $bin = binary(75) ConsoleWrite($bin & @CRLF) $bin = number($bin) ConsoleWrite($bin & @CRLF) Edited March 11, 2010 by Rkey
andrei0x309 Posted March 11, 2010 Author Posted March 11, 2010 (edited) @bogQ BinaryToString or StringToBinary is not what i want ( i did mention that ) thanks . @ Rkey Thanks for the help . Edited March 11, 2010 by Azraelsub7
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now