题目描述
在命令行输入如下命令:
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.输入由用例保证,不会出现不符合要求的输入
输入描述:
输入一行字符串,可以有空格
输出描述:
输出参数个数,分解后的参数,每个参数都独占一行
示例1
输入
xcopy /s c:\\ d:\\
输出
4
xcopy
/s
c:\\
d:\\
import java.util.*;
public class Main{
public static void main(String[] args){
Scanner scanner = new Scanner (System.in);
String str = scanner.nextLine();
int count = 0;
for(int i = 0; i < str.length(); i++){
//如果碰到一个“,这时需要i++直到找到下一个”
if(str.charAt(i) == '"'){
do{
i++;
}while(str.charAt(i) != '"');
}
if(str.charAt(i) == ' '){
count++;
}
}
System.out.println(count + 1);
int flag = 1;
for(int i = 0; i < str.length(); i++){
//在双引号之外flag为1,在双引号中flag为0
if(str.charAt(i) == '"'){
flag^=1;
}
//除了双引号和特殊空格其他字符都要打印
if(str.charAt(i) != '"' && str.charAt(i) != ' '){
System.out.print(str.charAt(i));
}
//双引号中的空格都要打印
if(str.charAt(i) == ' ' && flag == 0){
System.out.print(str.charAt(i));
}
//双引号之外碰到空格,需要换行
if(str.charAt(i) == ' ' && flag == 1){
System.out.println();
}
}
}
}