c·c++/c 프로그래밍

sscanf ,로 문자열 잘라내기

바로이순간 2012. 3. 16. 14:08

#include <stdio.h>


int main() {

  char *tokenstring = "first,25.5,second,15";

  char o[10], f[10], s[10], t[10];


  sscanf(tokenstring, "%[^','],%[^','],%[^','],%s", o, s, t, f);

  printf(" %s\n %s\n %s\n %s\n", o, s, t, f);


  return 0;

}