숫자를 문자열로 변환해준다..........' 간단간단! /* sscanf과 sprintf의 사용 여러함수가 있지만 그중에서 모든 기본 데이타형에 대하여 변환이 가능한 sscanf, sprintf를 소개합니다. sscanf은 scanf 과 sprintf은 printf과 사용법이 거의 같으므로 간단히 사용할 수 있습니다.*/ /* 문자열을 숫자로 변환하는 함수와 int atoi long atol, strtol unsigned long strtoul double atof, strtod long double _atold _strtold any basic types sscanf ... ... ... 숫자를 문자로 변환하는 함수 itoa int ultoa unsigned long ... ... sprintf an..
atoi() 함수는 .... wtoi() 함수로 유니코드 문자를 숫자로 변환이 가능하다! 문자열 안에서 문자열 검색하는 함수! wcsstr() WCHAR *pTestBuffer, CardIndex[5]; POINT point; memset(TextBuffer, 0, sizeof(TextBuffer) ); memset(CardIndex, 0, sizeof(CardIndex) ); if( wcsstr(TextBuffer, L"test MousePoint") != NULL) // 있음 { pTestBuffer = TextBuffer+15; // 길이만큼 wcscpy( CardIndex, pTestBuffer ); point.x = _wtoi(CardIndex); pTestBuffer +=2; point.y =..