View previous topic :: View next topic
|
Author |
Message |
Grant Goodale
New User
Joined: 13 Nov 2010 Posts: 67 Location: Brampton, Ontario, Canada
|
|
|
|
I am using the argc|argv variables to extract the EXEC PARM field data. However, it seems that C is doing some (unwanted) parsing. I code:
('OPT Key1(val1,val2) Key2(val3)')
and I get:
argc=4
argv=OPT
argv=Key1(val1,val2)
argv=Key2(val3)
Is anyone aware of (a) any way to stop the parsing, (b) any method another than argc|argv or (c) any way of letting spaces through?
TIA |
|
Back to top |
|
|
sergeyken
Senior Member
Joined: 29 Apr 2008 Posts: 2141 Location: USA
|
|
Back to top |
|
|
Grant Goodale
New User
Joined: 13 Nov 2010 Posts: 67 Location: Brampton, Ontario, Canada
|
|
|
|
Thanks. I was googling on EXEC PARM, not parse! Doh! |
|
Back to top |
|
|
|