I need to append a string to a text file which has double quotation marks throughout it. How do I do that cause VBA is very confused at the moment

What the string should say/append the text file to (load "c:\test.lsp")?

link|improve this question
4  
Do not write in all caps. – Magnus Hoff Nov 1 '10 at 14:46
4  
Please don't scream. Also, starting your question with LOL might not be the best way to attract answers. – Frédéric Hamidi Nov 1 '10 at 14:47
Yapp, caps and 'lol' for a start are a definite turn-off :) – hummingBird Nov 1 '10 at 14:48
3  
Ironically, the only thing not capitalised is the first pronoun "i", which should be! – eldarerathis Nov 1 '10 at 14:50
1  
lol, double quotation marks fail on caps lock users, lol – Mark Nov 1 '10 at 14:52
show 3 more comments
feedback

closed as not a real question by Magnus Hoff, Frédéric Hamidi, duffymo, T.J. Crowder, Lance Roberts Nov 1 '10 at 18:49

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

You can double the quotation marks inside the string:

"""The Professional"" is a killer movie."

Or use Chr(34):

Chr(34) & "The Professional" & Chr(34) & " is a killer movie."
link|improve this answer
THANKS FOR YOU INPUT MAGNUS HOFF (perhaps a hobby other then dogmatic would be nice) so the name playcat sounds like cat house – maple Nov 1 '10 at 15:03
Ahhh "cat house" ... of course – belisarius Nov 1 '10 at 15:30
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.