Reputation: 1849
I am using Flex builder with sdk 3.5. I want to convert binary string to unsigned int. How can I do this? Thanks
Upvotes: 0
Views: 1152
Reputation: 46037
The second parameter of parseInt
is the radix.
var n:int = parseInt("1010", 2);
trace(n);
Upvotes: 8