从不同的文件中读取并在字符串上使用strtok

时间:2016-01-19 00:45:31

标签: c string file strtok

所以这是一个从2个不同的文件(firstline // secondline)**中读取3个字符串(orig // test1 // orig_copy)的代码,并调用divide_string来使用strtok和获取令牌并将其存储在**(token_orig // token_test // token_orig_copy)中,  的 - >这就是问题所在: - 当我把三行放在main中时,它会编译并从所有3个字符串中获取令牌并“完成”。到底。 - 但是当我尝试接下来的三行时(注意我如何将“ HAHAHAH ”更改为“ HAHAHAHA ”),这一点变化都会改变一切并使程序停在printf(“对于第二个字符串:“);. 我希望我能解决这个问题  PS:你可以复制程序,这样你就可以轻松编译了

    #include <stdio.h>
#include <stdlib.h>
#include <string.h>
const char s[4] = " ,.";
int divide_string(char* thestring,char** destination)
{
    int i=0;
     char* token=strtok(thestring,s);
     destination[i]=malloc(sizeof(token)+1);
     strcpy(destination[i],token);
     i++;
     printf("the word %d is 'tokened' \n",i);
     while(token!=NULL)
     {
              token =strtok(NULL,s);
         if (token != NULL)
         {
             destination[i]=malloc(sizeof(token)+1);
             strcpy(destination[i],token);
             printf("the word %d is 'tokened' \n",i);
             ++i;
         }
     }
     return i;
}
void main ()
{ //TRY THESE THREE LINES THAT WORKS<-----------------------------
 char orig[]= "does work HAHAHAH";
char orig_copy[] = "does work HAHAHAH";
char test1[]="does work HAHAHAH";
//    char orig[]= "doesnt work HAHAHAHA";
//    char orig_copy[] = "doesnt work HAHAHAHA";
//    char test1[]="doesnt work HAHAHAHA";
    char *token_orig[81];
char *token_test[81];
char *token_orig_copy[81];
strcpy(orig_copy,orig);
printf("for string number one : \n");
int max_orig = divide_string(orig,token_orig);
printf("for string number two : \n");
int a        = divide_string(orig_copy,token_orig_copy);
printf("for string number three : \n");
int max_test = divide_string(test1,token_test);
printf("%s-",token_orig[0]);
printf("%s-",token_orig[1]);
printf("%s-\n",token_orig[2]);
printf("%s-",token_orig_copy[0]);
printf("%s-",token_orig_copy[1]);
printf("%s-\n",token_orig_copy[2]);
printf("%s-",token_test[0]);
printf("%s-",token_test[1]);
printf("%s-\n",token_test[2]);
    printf("done .");
return 0;
}

1 个答案:

答案 0 :(得分:0)

由于token是一个指针,sizeof(token)给出了指针变量的大小(可能是4或8个字节),而不是它指向的字符串中的字符数!你想要:

strlen(token) + 1

代替(0代表\ 0)。

关于sizeof对字符串有用的唯一时间是文字,如:

sizeof("Hello World")