HOW TO:將引號放入字串中 (Windows Form)
有時,可能會想在文字字串中放入引號 (" ")。 例如:
She said, "You deserve a treat!"
或者,您也可以使用 Quote 欄位當做常數。
若要在程式碼中的字串中放置引號
在 Visual Basic 中,請在資料列中插入兩個引號當做內嵌的引號。 在 Visual C# 和 Visual C++ 中,請插入逸出序列 (Escape Sequence) \" 當做內嵌的引號。 例如,使用以下程式碼來建立前置字串:
Private Sub InsertQuote() TextBox1.Text = "She said, ""You deserve a treat!"" " End Sub
private void InsertQuote(){ textBox1.Text = "She said, \"You deserve a treat!\" "; }
private: void InsertQuote() { textBox1->Text = "She said, \"You deserve a treat!\" "; }
-或-
插入 ASCII 或 Unicode 字元來當做引號。 在 Visual Basic 中請使用 ASCII 字元 (34)。 在 Visual C# 中請使用 Unicode 字元 (\u0022)。
Private Sub InsertAscii() TextBox1.Text = "She said, " & Chr(34) & "You deserve a treat!" & Chr(34) End Sub
private void InsertAscii(){ textBox1.Text = "She said, " + '\u0022' + "You deserve a treat!" + '\u0022'; }
注意事項 在此範例中您無法使用 \u0022,因為無法使用基礎字元集中用以指定字元的通用字元名稱。 否則的話,將會導致 C3851。 如需詳細資訊,請參閱編譯器錯誤 C3851。
-或-
您也可以定義字元的常數,並在需要時使用:
Const quote As String = """" TextBox1.Text = "She said, " & quote & "You deserve a treat!" & quote
const string quote = "\""; textBox1.Text = "She said, " + quote + "You deserve a treat!"+ quote ;
const String^ quote = "\""; textBox1->Text = String::Concat("She said, ", const_cast<String^>(quote), "You deserve a treat!", const_cast<String^>(quote));
請參閱
工作
HOW TO:控制 Windows Form TextBox 控制項的插入點
HOW TO:使用 Windows Form TextBox 控制項建立密碼文字方塊
HOW TO:建立唯讀文字方塊 (Windows Form)
HOW TO:在 Windows Form TextBox 控制項中選取文字
HOW TO:檢視 Windows Form TextBox 控制項中的多行