I try to write this line in a text file:
graph[bgcolor=white, size="9", center=1, margin="0.5, 0.5"];
like this:
out.write("graph [bgcolor=white, size="+9+", center="+1+", margin="+0.5,0.5+"];");
but it returns me an error at margin=”+0.5,0.5+”
How can I solve this?
Thanks
If your values are fixed then just escape the
"like this:\".