Quoted string parsing
---------------------
Key: CLI-213
URL: https://issues.apache.org/jira/browse/CLI-213
Project: Commons CLI
Issue Type: Bug
Components: Parser
Affects Versions: 1.2
Environment: Kubuntu, JRE 1.6
Reporter: Vishal Dhawani
Priority: Minor
When you pass a quoted string as argument in command line (eg. java Hello -e
"fname=\"vishal\" and lname=\"dhawani\""), it gives you one character less in
result (eg. cmdLine.getOptionValue("e") will return you fname="vishal" and
lname="dhawani).
Actually when you see the args[] passed to java, args[1] is fname="vishal" and
lname="dhawani" .
The above thing works when we give extra space, ie. java Hello -e
"fname=\"vishal\" and lname=\"dhawani\" ".
Please check.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.