I need to replace
GET(\"any_name\")
with
String str_any_name = getFunction(\"any_name\");
The hard part is ho
In answer to your question, no, you can't "strip off" the quotes in C++. But as other answers demonstrate, you can "add them on." Since you will always be working with a string literal anyway (right?), you should be able to switch to the new method.