gpt4 book ai didi

C 编程 - 分析一条线

转载 作者:行者123 更新时间:2023-11-30 20:46:27 25 4
gpt4 key购买 nike

如果我有 3 个源,例如“a b c”,如何将 a、b 和 c 分开?

struct target *t = target_start;
char *source_start = p_colon+1;
while (*source_start == ' ' || *source_start == '\t')
{ source_start++; }
char *source_end = source_start;
while (*source_end == ' ' || *source_end == '\t')
{ source_end--; }
char *p_space = strchr(source_start,' ');
//while(p_space != NULL)

//list_sources_append(&sources, source_start);
list_targets_append(&sources, t->source = source_start);
source_end++;
*source_end = '\0';

最佳答案

查找 strtok() 函数以将字符串分解为一系列标记。

关于C 编程 - 分析一条线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10327253/

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