what I am doing is writing a .js file with c++ and it will be used in a .html file to draw an organizational chart. I am actually making an abstract syntax tree. for this, I write the tree nodes in a js file like the following
var nodes = [
"int main(){",
"String str = "hello 'Jane'";",
"}"
]
there is a problem with the quotes. How do I get the following output with cpp.
var nodes = [
"int main(){",
"String str = \"hello \'Jane\'\";",
"}"
]
Write a function called "escape".