3

我有一个需要接受多个命令行参数的程序。我已经到了需要将其设置为接受参数 n 的阶段,该参数指定最终将打印的字符串的最大和最小长度。基本上输入可能如下所示:

-a -n7,7 -i // with -a and -i being other arguments

我可以自己挑选参数,但我也不确定如何提取那些最大值和最小值。我已经尝试过(见下文),但每当我尝试使用变量最小值和最大值时,我都会遇到运行时错误。干杯,伙计们。

int c;
while ((c = getopt(argc, argv, ":wpsaevin")) != -1) {
    switch (c) {
        case 'w': // pattern matches whole word
            mode = WHOLE;
            break;
        case 'p': // pattern matches prefix
            mode = PREFIX;
            break;
        case 'a': // pattern matches anywhere
            mode = ANYWHERE;
            break;
        case 's': // pattern matches suffix
            mode = SUFFIX;
            break;
        case 'e': // pattern matches anywhere
            mode = EMBEDDED;
            break;
        case 'v': // reverse sense of match
            reverse_match = true;
            break;
        case 'i': // ignore case of pattern
            ignore_case = true;
            break;
        case 'n': //Specifies word length
            length_spec = true;
            cin >> minimum >> maximum;
            if (minimum == 0 && maximum == 0) { //no word limit
                length_spec = false;
            } else if (maximum == 0) {
                maximum = 100;
            }
            break;
    }
}
argc -= optind;
argv += optind;
4

2 回答 2

3

From this page:

This variable is set by getopt to point at the value of the option argument, for those options that accept arguments.

case 'n': //Specifies word length
            length_spec = true;
            char *cvalue = optarg;
            // TODO: Split cvalue by delimiter
            // to obtain minimum and maximum
            if (minimum == 0 && maximum == 0) { //no word limit
                length_spec = false;
            } else if (maximum == 0) {
                maximum = 100;
            }
            break;

And an example of splitting a string:

#include <iostream>
#include <string>
#include <algorithm>

int
main()
{
  const char* test = "1000,2000";
  std::string str = std::string(test);
  auto find = std::find(str.begin(), str.end(), ',');
  std::string first = std::string(str.begin(), find);
  std::string second = std::string(find+1,str.end());
  std::cout << first << " " << second;
  // 1000 2000
}

EDIT

Reference link

If you're able to use C++11, consider using std::stoi, like so:

  int first_int = std::stoi( first );
  int second_int = std::stoi ( second );

If not, try this:

  std::replace(str.begin(), str.end(), ',', ' ');
  std::istringstream ss(str);
  ss >> first_int;
  ss >> second_int;
  std::cout << first_int << " " << second_int << std::endl;

I would use atoi as a last resort.

A naive implementation might look like this (use at your own risk):

int convert(std::string s)
{
    int size = s.size();
    int exp = size - 1;
    int result = 0;
    for (int i = 0; i < size; i++)
    {
        char c = s[i];
        result += (int)(c - '0') * std::pow(10, exp--);
    }
    return result;
}
于 2013-11-12T01:02:54.860 回答
0

您可以使用 Boost Library Program Options,如上面@aaronman 建议的那样。

于 2013-11-12T01:31:58.110 回答