Trying to launch an app using system.util.execute that requires quotes in one of its parameters. the parameter looks something like this: /M="Some message here" It seem when I put the quotes in the list entry they are getting stripped out. I am assuming they need to be escaped, but not sure how to do that.
What have you tried?
Ok, since I had not yet actually tried anything yet, I decided to try what I was initially going to try. I doubled up the quotes and that worked.
I guess I was being lazy by not trying something first!
If you're passing the whole line as a string you should be able to use either,
'/M="Some message here"'
or
"/M='Some message here'"