gpt4 book ai didi

c - 在 C 中读取用户输入的可变长度字符串

转载 作者:行者123 更新时间:2023-11-30 17:54:16 25 4
gpt4 key购买 nike

我正在尝试读取可变长度的用户输入并执行一些操作(例如在字符串中搜索子字符串)。

问题是我不知道我的字符串有多大(文本很可能有 3000-4000 个字符)。

我附上了我尝试过的示例代码和输出:

char t[],p[];
int main(int argc, char** argv) {
fflush(stdin);
printf(" enter a string\n");
scanf("%s",t);

printf(" enter a pattern\n");
scanf("%s",p);

int m=strlen(t);
int n =strlen(p);
printf(" text is %s %d pattrn is %s %d \n",t,m,p,n);
return (EXIT_SUCCESS);
}

输出是:

enter a string
bhavya
enter a pattern
av
text is bav 3 pattrn is av 2

最佳答案

请永远不要使用不安全的东西,例如 scanf("%s") 或我个人不喜欢的 gets() - 没有办法防止缓冲区溢出之类的事情。

您可以使用更安全的输入法,例如:

#include <stdio.h>
#include <string.h>

#define OK 0
#define NO_INPUT 1
#define TOO_LONG 2
static int getLine (char *prmpt, char *buff, size_t sz) {
int ch, extra;

// Get line with buffer overrun protection.
if (prmpt != NULL) {
printf ("%s", prmpt);
fflush (stdout);
}
if (fgets (buff, sz, stdin) == NULL)
return NO_INPUT;

// If it was too long, there'll be no newline. In that case, we flush
// to end of line so that excess doesn't affect the next call.
if (buff[strlen(buff)-1] != '\n') {
extra = 0;
while (((ch = getchar()) != '\n') && (ch != EOF))
extra = 1;
return (extra == 1) ? TOO_LONG : OK;
}

// Otherwise remove newline and give string back to caller.
buff[strlen(buff)-1] = '\0';
return OK;
}

然后,您可以设置最大大小,它会检测该行中是否输入了太多数据,并刷新该行的其余部分,这样就不会影响您的下一次输入操作。

您可以使用以下内容进行测试:

// Test program for getLine().

int main (void) {
int rc;
char buff[10];

rc = getLine ("Enter string> ", buff, sizeof(buff));
if (rc == NO_INPUT) {
// Extra NL since my system doesn't output that on EOF.
printf ("\nNo input\n");
return 1;
}

if (rc == TOO_LONG) {
printf ("Input too long [%s]\n", buff);
return 1;
}

printf ("OK [%s]\n", buff);

return 0;
}

关于c - 在 C 中读取用户输入的可变长度字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15036049/

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