일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- c++
- R
- 빅데이터
- 김양재
- Deep learning
- 김양재 목사
- 주일설교
- 우리들교회
- 딥러닝
- 인공지능
- data science
- Big Data
- 빅 데이타
- 통계
- Machine Learning
- 몽고디비
- Statistics
- 김양재 목사님
- 빅데이타
- nodeJS
- 데이터 과학
- No SQL
- MongoDB
- openCV
- 빅 데이터
- WebGL
- 확률
- node.js
- probability
- Artificial Intelligence
Archives
- Today
- Total
목록CString (2)
Scientific Computing & Data Science
[C/C++] MFC / CString과 std::string 타입 변환
1. CString ▶ std::stringCString str = "hello";std::string stdStr = str.GetBuffer(0); 2. std::string ▶ CStringstd::string stdStr = "hello";CString str = stdStr.c_str();또는CString str("Hello"); // Convert a TCHAR string to a LPCSTR CT2CA pszConvertedAnsiString(str); // Construct a std::string using the LPCSTR input std::string s(pszConvertedAnsiString);
Programming/C&C++
2014. 9. 1. 10:56
[C/C++] MFC / CString의 한글/영문/숫자 구별하기
이번 글에서는 MFC에서 CString으로 입력 받은 문자열의 첫번째 문자가 한글인지 영문인지 숫자인지 알아내는 코드를 소개하고자 한다. [한글 알아내기]CString str = _T("ㄱ"); if(0 >= str.GetAt(0) || 127 < str.GetAt(0)) AfxMessageBox(_T("This is Hangeul")); [영문 알아내기]CString str = _T("a"); if(isalpha(str.GetAt(0))) AfxMessageBox(_T("This is an Alphabet")); 또는 CString str = _T("a"); if((65
Programming/C&C++
2014. 7. 25. 11:28