바야바네 움집
[정리] 문자열 : strtok 본문
- strtok 함수는 포인터를 반환한다.
- 문자열을 한 번 제공해주면 그 문자열을 다 자르기 전까지는 문자열을 다시 줄 필요가 없음. (This function is designed to be called multiple times to obtain successive tokens from the same string.)
/* strtok example */
#include <stdio.h>
#include <string.h>
int main ()
{
char str[] ="- This, a sample string.";
char * pch;
printf ("Splitting string \"%s\" into tokens:\n",str);
pch = strtok (str," ,.-");
while (pch != NULL)
{
printf ("%s\n",pch);
pch = strtok (NULL, " ,.-");
}
return 0;
}
https://en.cppreference.com/w/cpp/string/byte/strtok
https://www.cplusplus.com/reference/cstring/strtok/?kw=strtok
https://blockdmask.tistory.com/382
'📘C++' 카테고리의 다른 글
[Geeksforgeeks] Given an array A[] and a number x, check for pair in A[] with sum as x (0) | 2021.11.24 |
---|---|
printf()로 string 변수 출력하기 (0) | 2021.11.23 |
Comments