从不同的文件中读取并在字符串上使用 strtok
reading from different files and using strtok on strings
所以这是一个从 2 个不同的文件 (firstline // secondline)** 并调用 divide_string 来使用 strtok 并获取令牌并将它们存储在 **(token_orig // token_test // token_orig_copy) ,
--> 这就是问题所在:
- 当我将这三行放在 main 中时,它会编译并从所有 3 个字符串和最后的 "Done ." 中获取令牌。
- 但是当我尝试接下来的三行时(请注意我是如何将“HAHAHAH”更改为“HAHAHAHA”的,这个小小的改变改变了一切并使程序在 printf("for the string number two :"); 处停止。
我希望我解决了这个问题
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;
}
因为 token 是一个指针,sizeof(token)
给出了指针变量的大小(可能是 4 或 8 个字节),而不是它指向的字符串中的字符数!你想要:
strlen(token) + 1
相反(\0 为 +1)。
关于 sizeof 对字符串有用的唯一时间是像这样的文字:
sizeof("Hello World")
所以这是一个从 2 个不同的文件 (firstline // secondline)** 并调用 divide_string 来使用 strtok 并获取令牌并将它们存储在 **(token_orig // token_test // token_orig_copy) , --> 这就是问题所在: - 当我将这三行放在 main 中时,它会编译并从所有 3 个字符串和最后的 "Done ." 中获取令牌。 - 但是当我尝试接下来的三行时(请注意我是如何将“HAHAHAH”更改为“HAHAHAHA”的,这个小小的改变改变了一切并使程序在 printf("for the string number two :"); 处停止。 我希望我解决了这个问题 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;
}
因为 token 是一个指针,sizeof(token)
给出了指针变量的大小(可能是 4 或 8 个字节),而不是它指向的字符串中的字符数!你想要:
strlen(token) + 1
相反(\0 为 +1)。
关于 sizeof 对字符串有用的唯一时间是像这样的文字:
sizeof("Hello World")