String in quotes
Hello I would like to know how to put a String VARIABLE in quotes.
If I have
String s="word";
When i do a print the output is: word
I'd like the output were: "word"
I know i could create the String doing
String s="\"word\"";
But I can't. I've to work with s variable.
Thank you very much for your help,
joan

