getline1 [c++] 문자열을 특정 문자 기준으로 자르기2 getline & stringstream 정석은 아니지만... getline을 사용하면 문자열을 손쉽게 자를 수 있다. getline(&istream is, &string str, char delim) - is는 cin이나 stringstream - str은 자른 문자열 - delim은 기준점이다. 원래 정의대로 라면 delim 문자를 만나면 문자열 추출이 중단된다. 이걸 이용해서 tokenize해보자. 일단 is 자리에 들어갈 stringstream이 필요하다. #include #include #include using namespace std; int main(void){ string s = "This,is,the,test!"; char delim = ' '; stringstream ss(input); string buffer; while(.. 2020. 10. 10. 이전 1 다음