Robotics/Software Tech.
CString to Hex Decimal
Hellboy
2007. 9. 6. 20:04
MFC에서 CString형에 들어간 hex형식의 스트링을 실제 hex코드로 변환해본다.
example>
CString str = "0xff";
CString out;
unsigned char hexout;
out = str.GetBuffer(0);
sscnaf(out, "%x", &hexout);