+ 2
how to create a string containing a double quote.
there is no where written how to create a string containing a double quote.
3 Answers
+ 3
You didn't specified the language but in JavaScript:
"bla"+' " '+" bla bla"
+ 2
In c#
Use the escape character \
Console.WriteLine (" bla \" bla bla");