Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 유니티 ResourceManager
- 유니티 Vector3
- eulerAngles
- 유니티 머신러닝
- 유니티
- 유니티 Rotate
- 유니티 시야 가림
- 유니티 InputManager
- 유니티 Collision
- 유니티 오브젝트 풀링
- InputManager
- c++
- ML-Agents
- 오브젝트 풀링
- Raycast
- 코드블럭 테마
- 알고스팟
- git-lfs
- Mathf.Clamp
- unity
- 소스코드 줄번호
- LFS
- LayerMask
- 이진트리
- 유니티 리소스매니저
- Quaternion.Euler
- LookRotation
- c++ 문자열 자르기
- 너비 우선 탐색
- 깊이 우선 탐색
Archives
- Today
- Total
반응형
목록c++ 문자열 자르기 (1)
무민은귀여워

문자열이 주어졌을 때, 공백 단위로 단어를 나누는 방법 ex) 문자열 "apeach frodo muzi" 을 "apeach", "frodo", "muzi" 로 나누어 저장 단어 갯수를 알 경우 1. substr 2. istringstream 단어 갯수를 모를 경우 3. stringstream 4. strtok 1. substr #include #include using namespace std; int main() { string str = "apeach frodo muzi"; vector names; for (int i = 0; i < 3; i++) { names.push_back(str.substr(0, str.find(" "))); str = str.substr(str.find(" ") + 1); ..
IT/c, c++
2022. 5. 20. 18:37
반응형