Data/string
-
Win32Data/string 2009. 2. 27. 17:45
BYTE * FillMemory() CopyMemory() ZeroMemory() StringCchCopy() lstrcmp() lstrcmpi() CharUpper() IsCharAlphaNumeric() CompareString() MultiByteToWideChar() wsprintf() lstrlen() lstrcat() 참조 사이트: http://blog.naver.com/PostView.nhn?blogId=drvoss&logNo=20059148948 http://blog.naver.com/drvoss/20041282591 http://www.jiniya.net/lecture/techbox/strsafe.html http://jjjryu.tistory.com/entry/C-7
-
C 라이브러리Data/string 2009. 2. 4. 16:35
#define _UNICODE #include int _tmain(int argc, LPTSTR argv[]) { ... } TCHAR, LPTSTR, LPCGSTR _T("..."), TEXT("..."), _TEXT("...") _stprintf() // sprintf() // wsprintf() _tstcpy() // strcpy() _itot() // itoa() _ttoi() _tcsupr() // _strupr, _wcsupr, _mbsupr _tcslwr() // _strlwr, _wcslwr, _mbslwr _totuppper() _totlower() _tcscmp() _tcscmpi() _tsetlocale() _tcsstr() // strstr, wcsstr, _mbsstr _memtc..
-
C++Data/string 2008. 12. 31. 23:43
std::string표준 라이브러리 // .copy().data() .clear() // Clear string.empty() // Test if string is empty.size() // Return length of string.length() // Return length of string.erase() .=() std::sort() //? std::copy() // memcpy() 스트링 포매팅 #include #include ostringstream ex_msg; string msg; ex_msg
-
MFCData/string 2008. 12. 20. 23:08
CString .IsEmpty() .GetLength() .Empty() .Delete() .Replace() .LoadString() .GetBuffer() .GetBufferSetLength() .ReleaseBuffer() .+() CString strData[] = {_T("SUN"), _T("MON"), _T("TUE"), _T("WED"), _T("THU"),_T("FRI"), _T("SAT") }; void CComboBox::GetLBText(int nIndex, CString& rString) const { ASSERT(::IsWindow(m_hWnd)); GetLBText(nIndex, rString.GetBufferSetLength(GetLBTextLen(nIndex))); rStri..