如何读取用户在C中输入的字符串?

时间:2010-10-26 13:01:30

标签: c stdin

我想阅读用户使用C程序输入的名称。

为此,我写道:

char name[20];

printf("Enter name: ");
gets(name);

但使用gets并不好,那么更好的方法是什么?

7 个答案:

答案 0 :(得分:79)

你应该从不使用gets(或scanf使用无限制的字符串大小),因为这会打开缓冲区溢出。将fgetsstdin句柄一起使用,因为它允许您限制将放置在缓冲区中的数据。

这是我用于用户输入线路的一小段代码:

#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;
}

答案 1 :(得分:17)

我认为阅读用户输入字符串的最佳和最安全的方法是使用getline()

以下是如何执行此操作的示例:

#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
    char *buffer = NULL;
    int read;
    unsigned int len;
    read = getline(&buffer, &len, stdin);
    if (-1 != read)
        puts(buffer);
    else
        printf("No line read...\n");

    printf("Size read: %d\n Len: %d\n", read, len);
    free(buffer);
    return 0;
}

答案 2 :(得分:6)

在POSIX系统上,如果可用,您可能应该使用getline

您还可以使用Chuck Falconer的公共域ggets函数,该函数提供的语法更接近gets但没有问题。 (Chuck Falconer的网站已经不再可用,虽然archive.org has a copy,我已经my own page for ggets了。)

答案 3 :(得分:3)

我找到了一个简单而好的解决方案:

char*string_acquire(char*s,int size,FILE*stream){
    int i;
    fgets(s,size,stream);
    i=strlen(s)-1;
    if(s[i]!='\n') while(getchar()!='\n');
    if(s[i]=='\n') s[i]='\0';
    return s;
}

它基于fgets但是没有&#39; \ n&#39;和stdin额外的字符(替换不适用于所有操作系统的fflush(stdin),如果必须在此之后获取字符串,则非常有用)。

答案 4 :(得分:1)

在BSD系统和Android上,您还可以使用fgetln

#include <stdio.h>

char *
fgetln(FILE *stream, size_t *len);

像这样:

size_t line_len;
const char *line = fgetln(stdin, &line_len);

line最终未终止并且包含\n(或您平台正在使用的任何内容)。在流上的下一个I / O操作后它变为无效。您可以修改返回的line缓冲区。

答案 5 :(得分:0)

您可以使用scanf函数读取字符串

scanf("%[^\n]",name);

我不知道接收字符串的其他更好的选项,

答案 6 :(得分:0)

使用scanf在键入字符串之前删除所有空格并限制要读取的字符数:

#define SIZE 100

....

char str[SIZE];

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

/* Or even you can do it like this */

scanf(" %99[a-zA-Z0-9 ]", str);

如果不限制使用scanf读取的字符数,则可能与gets一样危险