我有一个需要接受多个命令行参数的程序。我已经到了一个阶段,我需要将它设置为接受参数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;
答案 0 :(得分:3)
此变量由getopt设置为指向选项的值 参数,对于那些接受参数的选项。
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;
分割字符串的一个例子:
#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
}
修改强>
如果您能够使用C ++ 11,请考虑使用std::stoi
,如下所示:
int first_int = std::stoi( first );
int second_int = std::stoi ( second );
如果没有,试试这个:
std::replace(str.begin(), str.end(), ',', ' ');
std::istringstream ss(str);
ss >> first_int;
ss >> second_int;
std::cout << first_int << " " << second_int << std::endl;
我会使用atoi
作为最后的手段。
天真的实现可能看起来像这样(使用风险自负):
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;
}
答案 1 :(得分:0)
您可以像上面提到的@aaronman一样使用Boost Library Program Options。