gpt4 book ai didi

c - 如何用新行替换空格?

转载 作者:行者123 更新时间:2023-12-04 23:51:50 25 4
gpt4 key购买 nike

如何使用 C 将字符串中的空格替换为换行符 ("\n")?

最佳答案

#include <stdio.h>
#include <string.h>
#define SIZE 50

int main(int argc, char **argv)
{
char string[] = "this is my string";
size_t length, c;

length = strlen(string);

for(c = 0; c < length; ++c)
{
if(string[c] == ' ')
{
string[c] = '\n';
}
}

printf("%s\n", string);

return 0;
}

关于c - 如何用新行替换空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41919371/

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