0

我是 C 新手,我正在尝试将参数传递给我的程序,例如

program_name -param1=something -param2=somethingelse

然后在我的程序中,我想遍历参数并将它们拆分为“=”并将这两部分打印回命令行。这是我到目前为止所拥有的

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

int main(int argc, char *argv[])
{
    int i = 0;
    char parampart;
    char paramvalue;
    for(i = 0; i < argc; i++)
    {
        parampart = strtok(argv[i], "=");
        paramvalue = strtok(NULL, "=");
        printf("parampart: %s paramvalue %s", parampart, paramvalue);
    }

    return 0;
}

我收到错误,因为变量 parampart 和 paramvalues 是指针,但我不确定如何使用指针来获取字符串值。

4

4 回答 4

2

如果您使用的是 Linux,则可以使用getopt。它让生活更轻松

于 2013-10-08T14:16:48.407 回答
2

strtok()返回指针,因此您必须将 和 声明为parampart指针paramvalue,例如

char *parampart;
char *paramvalue;

您的其余代码是正确的。

于 2013-10-08T14:23:34.387 回答
1

问题是你假设每个参数都会有一个=。他们中的大多数人都这样做....但不是第零个,即program_name. 您应该从 arg 1 开始,而不是 arg 0,并且您应该检查第二次strtok调用是否返回 null,以防用户忘记等号。

当然,正如@MOHAMED 所提到的,这是getopt 的工作。

于 2013-10-08T14:17:19.973 回答
0

这是一个很好的例子man strtok,你应该在你的循环之前调用一次:

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

   int

   main(int argc, char *argv[])
   {
       char *str1, *str2, *token, *subtoken;
       char *saveptr1, *saveptr2;
       int j;

       if (argc != 4) {
           fprintf(stderr, "Usage: %s string delim subdelim\n",
                   argv[0]);
           exit(EXIT_FAILURE);
       }

       for (j = 1, str1 = argv[1]; ; j++, str1 = NULL) {
           token = strtok_r(str1, argv[2], &saveptr1);
           if (token == NULL)
               break;
           printf("%d: %s\n", j, token);

           for (str2 = token; ; str2 = NULL) {
               subtoken = strtok_r(str2, argv[3], &saveptr2);
               if (subtoken == NULL)
                   break;
               printf(" --> %s\n", subtoken);
           }
       }

       exit(EXIT_SUCCESS);
   }

并根据man getopt

#include <stdio.h>     /* for printf */
#include <stdlib.h>    /* for exit */
#include <getopt.h>

int
main(int argc, char **argv)
{
    int c;
    int digit_optind = 0;

   while (1) {
        int this_option_optind = optind ? optind : 1;
        int option_index = 0;
        static struct option long_options[] = {
            {"add",     required_argument, 0,  0 },
            {"append",  no_argument,       0,  0 },
            {"delete",  required_argument, 0,  0 },
            {"verbose", no_argument,       0,  0 },
            {"create",  required_argument, 0, 'c'},
            {"file",    required_argument, 0,  0 },
            {0,         0,                 0,  0 }
        };

       c = getopt_long(argc, argv, "abc:d:012",
                 long_options, &option_index);
        if (c == -1)
            break;

       switch (c) {
        case 0:
            printf("option %s", long_options[option_index].name);
            if (optarg)
                printf(" with arg %s", optarg);
            printf("\n");
            break;

       case '0':
        case '1':
        case '2':
            if (digit_optind != 0 && digit_optind != this_option_optind)
              printf("digits occur in two different argv-elements.\n");
            digit_optind = this_option_optind;
            printf("option %c\n", c);
            break;

       case 'a':
            printf("option a\n");
            break;

       case 'b':
            printf("option b\n");
            break;

       case 'c':
            printf("option c with value '%s'\n", optarg);
            break;

       case 'd':
            printf("option d with value '%s'\n", optarg);
            break;

       case '?':
            break;

       default:
            printf("?? getopt returned character code 0%o ??\n", c);
        }
    }

   if (optind < argc) {
        printf("non-option ARGV-elements: ");
        while (optind < argc)
            printf("%s ", argv[optind++]);
        printf("\n");
    }

   exit(EXIT_SUCCESS);
}

我建议您为每个选项设置标志并根据您的程序的行为对其进行初始化。

于 2013-10-08T14:28:14.093 回答