CString teststr = _T("Line1\nLine2\r\nLine3\nLine4");
CString outputstr;
for (int i = 0; i < teststr.GetLength(); i++)
{
if (teststr[i] == '\n')
{
MessageBox(outputstr, _T("String Parsing"), MB_OK);
outputstr = "";
}
else
{
if (teststr[i] != '\r') outputstr += teststr[i];
}
}
'old drawer > C, C++, MFC' 카테고리의 다른 글
[MFC] Tab Control 사용법 (2) | 2013.08.01 |
---|---|
[C++] 자료형 크기 (0) | 2013.06.10 |
[MFC] 기본 열기 동작(ID_FILE_OPEN 리소스) 재정의 하기 (1) | 2013.05.08 |
[MFC] MFC 4대 클래스간 참조 방법 (0) | 2013.05.03 |
[MFC] 각종 기능 정리 (0) | 2013.05.03 |