Parse the numbers from the string in base-2 (binary) : parseInt « Data Type « Flash / Flex / ActionScript






Parse the numbers from the string in base-2 (binary)

 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        trace(parseInt("110011", 2));  // Displays: 51
    }
  }
}

        








Related examples in the same category

1.Parse the numbers from the string base-16 (hexadecimal)
2.Parse the numbers from the string base-10
3.If omitted, the radix is assumed to be 10, unless the string starts with 0x, 0X, or 0
4.When the number is treated base-10, conversion stops when a non-numeric character is encountered
5.Octal is treated as a decimal number, not an octal number: