gpt4 book ai didi

c - 插入一定数量的字符,包括空格

转载 作者:太空宇宙 更新时间:2023-11-04 01:47:28 25 4
gpt4 key购买 nike

我想要完成的是不超过“x”个字符(包括空格)作为输入。我只知道如何使用 scanf,

分别完成这两个操作

像下面这样:

scanf("%20s",str)

这不超过 20 个字符。

scanf("%[^\n]s",str) 也需要空格,但没有限制。我试过 getline 但它也将 \n 作为字符串中的值,我不希望这样。我希望我已经足够清楚我要问的是什么。

根据@chqrlie 告诉我的,我写了这个函数:

void getstring(char *str, int len)
{
do
{
if (fgets(str, len, stdin))
{
fflush(stdin);
// if is not the first character to be the new line then change it to '\0' which is the end of the string.
if (str[0] != '\n')
str[strcspn(str, "\n")] = '\0';
}
}while (str[0] == '\n'); // Check if the user has inserted a new line as first character
}

最佳答案

字符类的格式没有尾随,它是这样写的:

scanf("%[^\n]", str)

如果您希望限制存储到目标数组中的最大字符数,请在 %[:

之间指定此数字
scanf("%20[^\n]", str)

但是请注意,如果此转换规范有空行未决,则转换将失败并且 scanf() 将返回 0

忽略 scanf() 返回值的测试是一个常见的错误,在转换失败的情况下会导致未定义的行为,因为目标变量保留在它们之前的状态(在许多情况下未初始化)个案)。

使用 fgets() 并以这种方式删除结尾的换行符可能更有效:

if (fgets(s, 20, stdin)) {
/* line was read, can be an empty line */
s[strcspn(s, "\n")] = '\0'; /* remove the trailing newline if any */
...
} else {
/* fgets() failed, either at end-of-file or because of I/O error */
...
}

关于c - 插入一定数量的字符,包括空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50938929/

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