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