Quotes within a text string

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

Guest

ADVERTISEMEN


Is there any way to display quotes Themselves - within a text strin

textbox1.text = "This is a "test" of inserting quotes"

I want to actually use quotes within this string around the wor
test - but the program picks this up as me ending the string and the
obviously does not like the work test just sitting there and then i
tries ot start up the string again

Is there a way to insert a special ascii character

thanks.
 
* "=?Utf-8?B?S2VpdGg=?= said:
Is there any way to display quotes Themselves - within a text string

textbox1.text = "This is a "test" of inserting quotes".

\\\
TextBox1.Text = "This is a ""test"" of inserting quotes"
///
 
Back
Top