最适合网络开发者的网站
C# 语言。W3Schools 英文课程

尿素 西斯

C# 特殊字符


字符串 - 特殊字符

因为字符串必须写在引号内,所以 C# 会误解这个字符串,并产生错误:

string txt = "We are the so-called "Vikings" from the north.";

避免此问题的方法是使用 反斜杠转义字符.

反斜杠 (\) 转义字符将特殊字符转换为字符串字符:

转义符 结果 描述
\' ' 单引号
\" " 双引号
\\ \ 反斜杠

序列 \"在字符串中插入双引号:

例子

string txt = "We are the so-called \"Vikings\" from the north.";

亲自尝试 »

序列 \' 在字符串中插入单引号:

例子

string txt = "It\'s alright.";

亲自尝试 »

序列 \\ 在字符串中插入一个反斜杠:

例子

string txt = "The character \\ is called backslash.";

亲自尝试 »

C# 中其他有用的转义字符包括:

代码 结果 尝试一下
\n 新队 尝试一下 ”
\t 标签 尝试一下 ”
\b 退格键 尝试一下 ”

C# 练习

通过练习测试自己

锻炼:

填写缺失部分以创建 greeting 类型的变量string 并为其分配值Hello.

  = ;