Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Nate

Nate

Nate has asked 0 questions and find answers to 2 problems.

Stats

34
EtPoint
8
Vote count
0
questions
2
answers

About

I'm an independent software consultant. If you want to pay some of my bills in exchange for my magic computer voodoo

Email [email protected] or you can parse my phone in your fav lang below.

    // c#
    int.Parse(0x43B30ABCF, System.Globalization.NumberStyles.HexNumber);

    // ActionScript 3.0 / JavaScript / ECMAScript
    parseInt( 0x43B30ABCF , 10 );

    // Java
    Integer.parseInt( '43B30ABCF' ,10);

    // c++
    strtol('0x43B30ABCF',NULL,10);

    // Objective-C (iOS/iPhone/iPad/etc)
    [NSString stringWithFormat:@"%d", 0x43B30ABCF];