从 C 中读取文件时如何标记?
文本文件:
PES 2009;科乐美;DVD 3;500.25;6
刺客信条;育碧;DVD;598.25;3
地狱;EA;DVD 2;650.25; 7
char *tokenPtr;
fileT = fopen("DATA2.txt", "r"); /* this will not work */
tokenPtr = strtok(fileT, ";");
while(tokenPtr != NULL ) {
printf("%s\n", tokenPtr);
tokenPtr = strtok(NULL, ";");
}
希望它打印出来:
实况足球 2009
科乐美
.
.
.