gpt4 book ai didi

c - C语言中的空格替换

转载 作者:行者123 更新时间:2023-11-30 20:06:15 26 4
gpt4 key购买 nike

在 2 个字符的字符串 passCode 中用 _ 替换空格的正确方法是什么?最后它应该输入/输出:(a )(a_)。有没有办法使用 isspace 来做到这一点?

isspace(passCode[2]) == 0;

最佳答案

检查该字符是否为空格,如果是,则替换为_

例如:

#include <stdio.h>
#include <ctype.h>
int main ()
{
int i=0;
unsigned char str[]="a ";
while (str[i])
{
if (isspace(str[i]))
str[i]='_';
i++;
}
printf("%s\n",str);
return 0;
}

关于c - C语言中的空格替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26052675/

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