c++ string token
2019. 9. 18. 20:14ㆍ알고리즘/암기
getline에 세번째 있는 delimeter를 이용해서 token할 수 있다
vector<string> solution(vector<string> record) {
vector<string> ans;
for (int i = 0; i < record.size(); i++) {
vector<string> tokens;
istringstream f(record[i]);
string s;
while (getline(f, s, ' ')) {
tokens.push_back(s);
cout << s << ' ';
}
cout << '\n';
}
return ans;
}
'알고리즘 > 암기' 카테고리의 다른 글
map을 정렬하는 방법 (0) | 2019.09.22 |
---|---|
sort 함수에서의 compare function 동작 로직 (0) | 2019.09.21 |
파이썬으로 문자열 다루기 (0) | 2019.09.18 |
a의 배수이면서 b이상을 구하는 식 (0) | 2019.09.14 |
스택에서 top과 현재의 연관성을 보고 싶을 때 (0) | 2019.08.29 |