Dear Statalist,
I would like to implement an option of the form
How can I check if the option has been specified but left empty such as
or if the option has not been specified such as
?
In both cases the local `myoption' will be empty, but how can i distinguish between the two cases?
Many thanks.
Raffaele
I would like to implement an option of the form
Code:
program myprog syntax, [myoption(string)] ... ... end
Code:
myprog, myoption()
Code:
myprog
In both cases the local `myoption' will be empty, but how can i distinguish between the two cases?
Many thanks.
Raffaele
Comment