gpt4 book ai didi

C计算字符串中某个字符出现的次数

转载 作者:太空狗 更新时间:2023-10-29 16:21:55 27 4
gpt4 key购买 nike

我有字符串 str

char *str = "100.10b.100.100";

我想计算 '.'str 中出现的次数,最好是一行。 (如果可能的话没有循环)

我的方法是标准的 strchr:

  int i = 0;
char *pch=strchr(str,'.');
while (pch!=NULL) {
i++;
pch=strchr(pch+1,'.');
}

最佳答案

我会这样做(需要最少数量的变量):

for (i=0; s[i]; s[i]=='.' ? i++ : *s++);

关于C计算字符串中某个字符出现的次数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4235519/

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