atoi() _wtoi() 문자열안에서 "문자열"검색!
- Module/WindowsMFC
- 2008. 10. 7.
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 = _wtoi(CardIndex); }
'Module > WindowsMFC' 카테고리의 다른 글
CString <-> char 변환 (0) | 2008.10.27 |
---|---|
MFC Dlg 모달리스로 띄우기 (0) | 2008.10.16 |
memset memcpy memcpy_s [정리] C (0) | 2008.10.07 |
wchar -->> char ... 기타 등등.. (0) | 2008.10.07 |
WCHAR 를 CHAR 로 바꾸기... (0) | 2008.10.07 |