PDA

View Full Version : Simple string question


arcburn
11-30-2005, 06:05 PM
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:\\testtext.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!!!

antonv
11-30-2005, 08:10 PM
Use "format" instead of print. I cannot try it now but from what I remember I never had that issue with format.

arcburn
11-30-2005, 08:16 PM
That did it. Thanks so much!

CGTalk Moderation
11-30-2005, 08:16 PM
This thread has been automatically closed as it remained inactive for 12 months. If you wish to continue the discussion, please create a new thread in the appropriate forum.