How do I write a " to a text file

Blitz3D Forums/Blitz3D Beginners Area/How do I write a " to a text file

hollifd(Posted 2016) [#1]
How do I write a quotation mark to a text file? Something like...
Writeline(fileout, """)


hollifd(Posted 2016) [#2]
Never mind. I got it. CHR(34) seems to do the trick.


Matty(Posted 2016) [#3]
or you can do this:

writebyte outfile,34

assuming you are writing byte streams rather than entire lines of text....


hollifd(Posted 2016) [#4]
Thanks Matty. Currently, I am writing complete lines of text but thanks for the tip about byte streams.