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
- eulerAngles
- Raycast
- Mathf.Clamp
- 깊이 우선 탐색
- 유니티 Rotate
- 이진트리
- 너비 우선 탐색
- 코드블럭 테마
- InputManager
- c++ 문자열 자르기
- git-lfs
- 유니티 시야 가림
- LookRotation
- unity
- 유니티 리소스매니저
- 유니티 머신러닝
- 알고스팟
- 오브젝트 풀링
- 유니티 Vector3
- 유니티 ResourceManager
- ML-Agents
- 유니티 오브젝트 풀링
- Quaternion.Euler
- 유니티 InputManager
- LayerMask
- c++
- LFS
- 유니티 Collision
- 소스코드 줄번호
- 유니티
Archives
- Today
- Total
반응형
목록substr (1)
무민은귀여워
문자열 자르기 substr / istringstream / stringstream / strtok
문자열이 주어졌을 때, 공백 단위로 단어를 나누는 방법 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
반응형