gpt4 book ai didi

c - 遍历 C 字符串 : get the last word of a string

转载 作者:太空狗 更新时间:2023-10-29 15:02:48 26 4
gpt4 key购买 nike

如何获取字符串的最后一个单词,从“\0”换行符开始到最右边的空格?例如,我可以有这样的东西,其中可以为 str 分配一个字符串:

char str[80];
str = "my cat is yellow";

我怎么会变黄?

最佳答案

像这样:

char *p = strrchr(str, ' ');
if (p && *(p + 1))
printf("%s\n", p + 1);

关于c - 遍历 C 字符串 : get the last word of a string,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9219940/

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