[ C++ ] string split

2020. 2. 26. 18:44언어/C++

728x90
반응형
SMALL
#include <string.h>
#include
char arrS[] = "2020-02-26";
char* tok = strtok(arrS, "-");
while(tok != NULL){
  cout<<tok;
  tok = strtok(NULL, "-");
}

 

728x90
반응형

'언어 > C++' 카테고리의 다른 글

[ C++ ] string to digit  (0) 2020.02.26
[ C++ ] cout  (0) 2020.02.25