"c++ csv"에 해당되는 글 - 1건
Post
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
int main()
{
string str_buf;
fstream fs;
fs.open("test.csv", ios::in);
while (!fs.eof()) {
std::getline(fs, str_buf, '\n');
printf("%s", str_buf.c_str());
}
fs.close();
return 0;
}
C++ csv 파일 읽기 예제
string.h는 문자열에 관련된 함수를 사용하는 거고 getline을 사용하려면 string 헤더를포함해야한다는 걸 명심할 것
string을 printf로 출력하려면 c_str()함수 호출.
std::getline(fs, str_buf, '\n'): getline은 한줄 씩 읽는 함수. 세번째 인자는 어느 문자열을 만나면 여기까지 읽겠다는 뜻. 즉 \n 이므로 한줄을 읽게 된다. 세번째 인자를 잘못넣어주면 그냥 텍스트 파일을 통째로 읽게 된다.
너무 오랜만에 해서 다 까먹었다...
'이전게시판 > C, C++' 카테고리의 다른 글
How to TCHAR to string C++ (GetCurrentDirectory) (0) | 2024.10.07 |
---|---|
c++ stl Map 동적할당 delete 해제 예제 (0) | 2024.10.04 |
Visual studio 단축키 (0) | 2024.10.03 |
c++ 전처리기 region 이란 (0) | 2018.09.30 |
pragma message 출력창에 내용 출력 (0) | 2018.08.29 |
Cygwin 설치 설정 방법 (0) | 2018.07.27 |
서버 파싱 중 이진수 데이터 조합 (0) | 2018.06.20 |
flyweight(플라이웨이트) 패턴 (0) | 2018.06.16 |