4

I have following hex value

CString str;
str = T("FFF000");

How to convert this in to an unsigned long?

iammilind
  • 62,239
  • 27
  • 150
  • 297
Chris_vr
  • 6,210
  • 15
  • 59
  • 119

2 Answers2

11

You can use strtol function which works on regular C strings. It converts a string to a long using a specified base:

long l = strtol(str, NULL, 16);

details and good example: http://www.cplusplus.com/reference/clibrary/cstdlib/strtol/

Adam
  • 15,548
  • 4
  • 47
  • 89
10
#include <sstream>
#include <iostream>

int main()
{

    std::string s("0xFFF000");
    unsigned long value;
    std::istringstream iss(s);
    iss >> std::hex >> value;
    std::cout << value << std::endl;

    return 0;
}
hidayat
  • 8,463
  • 13
  • 44
  • 63