How to put data containing double-quotes in string variable? [duplicate]

You can escape (this is how this principle is called) the double quotes by prefixing them with another double quote. You can put them in a string as follows:

Dim MyVar as string = "some text ""hello"" hello"

This will give the MyVar variable a value of some text "hello" hello.

Leave a Comment