Skip to main content
Email Password   helpLost your password?
  • Download demo project - 8 Kb
  • Convert a "Hex String" to an Integer

    Sometimes I have had a string containing a Hex Value like char s[10] = "0xFDE8"; that I would like to convert to an integer (in this case it would of course get the value 65000). I have not been able to find any standard C or C++ functions to do that, so I decided to write my own. It's declared as _httoi(const TCHAR *value) and is coded using TCHAR so it works both with and without UNICODE defined

    It's possible it could be done smarter and faster, but it works and if you like it it's yours to use for free.

    Here is the code to a small console application that uses the function, and demostrates its use.

    #include "stdafx.h"
    
    #include <tchar.h>
    
    #include <malloc.h>
    
    
    int _httoi(const TCHAR *value)
    {
      struct CHexMap
      {
        TCHAR chr;
        int value;
      };
      const int HexMapL = 16;
      CHexMap HexMap[HexMapL] =
      {
        {'0', 0}, {'1', 1},
        {'2', 2}, {'3', 3},
        {'4', 4}, {'5', 5},
        {'6', 6}, {'7', 7},
        {'8', 8}, {'9', 9},
        {'A', 10}, {'B', 11},
        {'C', 12}, {'D', 13},
        {'E', 14}, {'F', 15}
      };
      TCHAR *mstr = _tcsupr(_tcsdup(value));
      TCHAR *s = mstr;
      int result = 0;
      if (*s == '0' && *(s + 1) == 'X') s += 2;
      bool firsttime = true;
      while (*s != '\0')
      {
        bool found = false;
        for (int i = 0; i < HexMapL; i++)
        {
          if (*s == HexMap[i].chr)
          {
            if (!firsttime) result <<= 4;
            result |= HexMap[i].value;
            found = true;
            break;
          }
        }
        if (!found) break;
        s++;
        firsttime = false;
      }
      free(mstr);
      return result;
    }
    
    int main(int argc, char* argv[])
    {
      TCHAR *test[4] = {_T("0xFFFF"), _T("0xabcd"), _T("ffff"), _T("ABCD")};
      for (int i = 0; i < 4; i++)
        _tprintf(_T("Hex String: %s is int: %d\n\r"), test[i], _httoi(test[i]));
      return 0;
    }
    

    Well, that's all there is to it. You can either copy the code from your browser, or download the project for Visual C++ 6.0.

    You must Sign In to use this message board.
     
     
    Per page   
     FirstPrevNext
    GeneralOh my god- so much code and for what??? Something that is already done with one line using "strtol" Pin
    TheBishop
    6:39 7 May '09  
    Generalefficient & no library dependencies: Pin
    tektor
    13:04 15 Dec '08  
    Generaldead horse Pin
    c. leamon
    5:08 11 Sep '07  
    GeneralWhy re-invent the wheel ? Pin
    damnedyankee
    2:10 8 Dec '06  
    GeneralRe: Why re-invent the wheel ? Pin
    Francesco Pratolongo
    10:22 4 Apr '07  
    GeneralShorter Code Pin
    nfalabi
    20:08 29 Oct '06  
    GeneralRe: Shorter Code Pin
    as_sound_as
    7:56 6 May '07  
    General:) nice but... Pin
    nicekr
    5:12 14 Aug '06  
    Generalgreat!! Pin
    KIM HyunJoong
    20:05 3 Jul '06  
    Generalsscanf will do too ... Pin
    Anonymous
    4:08 27 Sep '05  
    GeneralRe: sscanf will do too ... Pin
    spinoza
    16:53 4 Jan '06  
    GeneralThanks Pin
    Codin' Carlos
    20:58 16 Oct '02  
    GeneralRe: Thanks Pin
    Anonymous
    6:00 17 Nov '04  
    GeneralRe: Thanks Pin
    c4l
    12:26 23 Apr '06  
    General;P If you speaking about C++ then this is the solution for converting a hexadecimal string to an integer Pin
    Anonymous
    3:19 12 Jun '02  
    GeneralUse strtol. Pin
    Anonymous
    12:00 25 Jul '02  
    GeneralString to Int Pin
    Komtiki
    23:01 21 Apr '02  
    GeneralRe: String to Int Pin
    Anders Molin
    12:33 8 May '02  
    GeneralTry This also Pin
    NMS
    1:45 10 Aug '01  
    GeneralUsing CString again... Pin
    Liqo
    6:03 14 Mar '01  
    GeneralSlooooooow lookup Pin
    Oz Solomonovich
    7:33 17 Jan '01  
    GeneralAnother way -- using CString Pin
    Paul Wolfensberger
    6:32 14 Jan '01  
    Generalstd::stringstream Pin
    Wilka
    13:33 12 Jan '01  
    GeneralWhy don't you use strtol()? Pin
    Nicolas P
    12:07 12 Jan '01  
    GeneralRe: Why don't you use strtol()? Pin
    William E. Kempf
    12:35 12 Jan '01  


    Last Updated 15 Jan 2001 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009