C++
문자열 공백 분리 컨트롤
stringstream 사용법
s = "weoifwjeoif woiejfowjf \n wefjwoiejf" stringstream ss(s); string str; while (ss >> str) { ~~ }