在C中拆分和访问字符串

时间:2013-10-08 14:14:45

标签: c string strtok

我是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 个答案:

答案 0 :(得分:2)

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

答案 1 :(得分:2)

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

char *parampart;
char *paramvalue;

其余代码是正确的。

答案 2 :(得分:1)

问题在于你假设每个参数都包含=。其中大部分都是......但不是第零个,即program_name。你应该从arg 1开始,而不是arg 0,你应该检查第二个strtok调用的空返回,以防用户忘记等号。

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

答案 3 :(得分: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);
}

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