参数解析

题目描述
在命令行输入如下命令:

xcopy /s c:\ d:\,

各个参数如下:

参数1:命令字xcopy

参数2:字符串/s

参数3:字符串c:\

参数4: 字符串d:\

请编写一个参数解析程序,实现将命令行各个参数解析出来。

解析规则:

1.参数分隔符为空格
2.对于用“”包含起来的参数,如果中间有空格,不能解析为多个参数。比如在命令行输入xcopy /s “C:\program files” “d:\”时,参数仍然是4个,第3个参数应该是字符串C:\program files,而不是C:\program,注意输出参数时,需要将“”去掉,引号不存在嵌套情况。
3.参数不定长
4.输入由用例保证,不会出现不符合要求的输入

#include
#include
#include
using namespace std;
class Check {
public:
Check() {
int count = 1;
string s;
string s1;
while (getline(cin, s1)) {
for (int i = 0; i < s1.size(); i++) {
if (s1[i] == ’ '&&judge(s1,i)==1) ++count;
}
cout << count << endl;
for (int i = 0; i < s1.size(); i++) {
if (s1[i] == ‘"’) ++i;
cout << s1[i];
if (s1[i] == ’ '&&judge(s1,i)==1) cout << endl;
}
count = 0;
}
}
int judge(string s1, int i) {
int count = 0;
for (int j = 0; j < i; j++) {
if (s1[i] == ‘"’) ++count;
}
if (count % 2 != 0) {
return 0;
}
return 1;
}
};
int main() {
Check c1;
return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值