How do I write a " to a text file
Blitz3D Forums/Blitz3D Beginners Area/How do I write a " to a text file| 
 | ||
| How do I write a quotation mark to a text file? Something like... Writeline(fileout, """) | 
| 
 | ||
| Never mind. I got it. CHR(34) seems to do the trick. | 
| 
 | ||
| or you can do this: writebyte outfile,34 assuming you are writing byte streams rather than entire lines of text.... | 
| 
 | ||
| Thanks Matty.  Currently, I am writing complete lines of text but thanks for the tip about byte streams. |