본문 바로가기
C++

std::stringstream std::getline

by 사무실 꿀벌 2020. 6. 2.
반응형

#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, ','); // "," 기준
}

반응형