G
Guest
When using WriteLine to append to a file it does not strip the quotation marks when writing. I am trying to find a way to strip the quotations from writing to the specified file
Example
FileOpen(1, "File",OutputMode.Output
WriteLine(1, "This is a test."
FileClose(1
It creates the file and adds this line
"This is a test.
Also, related to that question is this: Is it possible to use ASCII characters to add quotation marks?
Example
FileOpen(1, "File",OutputMode.Output
WriteLine(1, "This is a test."
FileClose(1
It creates the file and adds this line
"This is a test.
Also, related to that question is this: Is it possible to use ASCII characters to add quotation marks?