STUDY/C++

[C++] istringstream 사용하여 문자열 자르기

yegyeom 2022. 5. 29. 01:54
#include <iostream>
#include <sstream>
using namespace std;

int main(){
    string str = "abc-def-ghi";
    
    istringstream iss(str);
    string buffer;
    
    while(getline(iss, buffer, '-')) cout << buffer << '\n';
    
    return 0;
}

'STUDY > C++' 카테고리의 다른 글

[C++] vector 원소 찾기, 해당 인덱스 찾기 (find 함수)  (0) 2021.10.24
[C++] vector 중복 제거하기  (0) 2021.10.24