Print command with ""

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

my program uses the Print command like
Print(a, "Language=" & language)
to print a textline in my text file.
In the text file I need a format like
Language="my language"

How do I get the additional quotation marks?

Regards
Thomas
 
use "" within a string to represent a quote ...

i.e.

"""Greg"" was here"
translates to
"Greg" was here

Cheers,

Greg
 
If you're using C# you use the \" escape sequence to insert a quotation
mark:

string s = "Language = \"" + mylanguage + "\"";
 
Back
Top