반응형
#include <sstream>
std::fstream fs; // 파일 스트림
fs.open(strPathText, std::ios::in); // 파일 읽기
std::string str_buf;
while (!fs.eof())
{
std::string line;
std::getline(fs, line);
std::stringstream lineStreadm(line); // 한줄 읽은 string 을 스트림 으로
std::getline(lineStream, str_buf, ','); // "," 기준
}
반응형
'C++' 카테고리의 다른 글
MFC 실행파일 경로 찾기 (0) | 2020.06.02 |
---|---|
CString Function Example Sample (0) | 2020.06.02 |
Using struct access[] (0) | 2020.06.02 |
MFC Feature Pack - CMFCEditBrowseCtrl Get Path (0) | 2020.06.02 |
"DTD cannot be used" when loading C++ xml DOM. Methods that can be used for error messages (0) | 2020.06.02 |