gpt4 book ai didi

c - C 中的字符串标记

转载 作者:行者123 更新时间:2023-11-30 17:19:56 25 4
gpt4 key购买 nike

我一直在尝试使用空格作为分隔符来标记字符串,但它不起作用。有人对为什么它不起作用有建议吗?

编辑:标记化使用:

strtok(string, " ");

代码如下

pch = strtok (str," ");
while (pch != NULL)
{
printf ("%s\n",pch);
pch = strtok (NULL, " ");
}

最佳答案

这样做:

char s[256];
strcpy(s, "one two three");
char* token = strtok(s, " ");
while (token) {
printf("token: %s\n", token);
token = strtok(NULL, " ");
}

注意:strtok 修改字符串的标记,因此它不能是 const char*

关于c - C 中的字符串标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28741953/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com