-
특정 문자 ',', '/' 등으로 문자열 분할 후 배열에 차례로 집어넣는 함수C++ 2024. 2. 21. 18:38
vector<int> split(const string& str, char sep) { vector<int> tokens; int i; stringstream ss(str); while (ss >> i) { tokens.push_back(i); if (ss.peek() == sep) { ss.ignore(); } } return tokens; }
'C++' 카테고리의 다른 글
STL Container - vector의 최댓값과 최댓값이 위치한 인덱스 출력 (0) 2024.02.19 STL next_permutation (0) 2024.01.31