how to write out a double quote in txt?
in
Programming Questions
•
2 years ago
Hello,
i'm quite new to procesing, forgive me that. And the bad English.
i need to write a points File for Rhino, it should look like this:
"xcoord","ycoord","zcoord"
i tried something like this:
output.println(""" + String.valueOf (x) + "","" + String.valueOf (y) + "","" + String.valueOf (z) + "","")
but it cant read the double quotes as plain text.
any ideas are much appreciated!
Simon
i'm quite new to procesing, forgive me that. And the bad English.
i need to write a points File for Rhino, it should look like this:
"xcoord","ycoord","zcoord"
i tried something like this:
output.println(""" + String.valueOf (x) + "","" + String.valueOf (y) + "","" + String.valueOf (z) + "","")
but it cant read the double quotes as plain text.
any ideas are much appreciated!
Simon
1