Writing to a file WITOUT commas or quotations?

Started by
4 comments, last by Wizzy 20 years, 11 months ago
kay, i need some help in writing to a file so that it doesn''t use quotes or commas... right now i use the Read and Write commands cause they''re all i know... but i can''t seem to figure out a way to make them write without either of the things i mentioned.... is there another method? here''s an example of what i mean instead of: 12,34,56 23,65,76 "Adam Deadmarsh" i''d like 12 34 56 23 65 76 Adam Deadmarsh
Advertisement
fprintf doesn''t do commas
if you use fput or something similar, you can write each cahr 1 at a time... just curious, but how do you plan on knowing if Adam Deadmarsh is one string or two? Just something to consider maybe...

Dwiel

Maybe you should tell us all what particular labguage or tool it is that you''re trying to use. That would help generate more focused answers.
It looks like you are using Visual Basic. Try using the Print command.


Qui fut tout, et qui ne fut rien
Invader''s Realm
haha, i''m a moron i forgot to say it''s on VB sorry

i tried that Print command and it seemed to work fine just like the Input #1 command - so that was pretty simple - thank you

This topic is closed to new replies.

Advertisement