Notifications
Clear all

[Closed] Simple string question

is there any way to print a string to a text file without the “” quotation marks around the text?

i.e. if i do this

testtext = createfile “c:\ esttext.txt”

aa = “I don’t want these quotation marks around my printed text!!!”

print aa to:testtext

the text file gives me

“I don’t want these quotation marks around my printed text!!!”

I want it to read

I don’t want these quotation marks around my printed text!!!

2 Replies

Use “format” instead of print. I cannot try it now but from what I remember I never had that issue with format.

That did it. Thanks so much!