csharp 打印时使用转义序列,字符串文字和逐字符串的示例。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 打印时使用转义序列,字符串文字和逐字符串的示例。相关的知识,希望对你有一定的参考价值。

// Most frequently used escape characters.
Console.WriteLine("\'");	// single quote
Console.WriteLine("\"");	// double quote
Console.WriteLine("\\");	// backslash
Console.WriteLine("Before new line \nAfter new Line");	// new line
Console.WriteLine("Tab \t tab");	// tab
Console.WriteLine("\u004A");	// char specified by Unicode
Console.WriteLine("Quotes in strings are \"really\" hard to deal with.");
//  Quotes in strings are "really" hard to deal with.

// Print a string verbatim. Add @ before the string.  
Console.WriteLine(@"This \\ string \t ignores \' all \n the escape characters.");
//  This \\ string \t ignores \' all \n the escape characters.

以上是关于csharp 打印时使用转义序列,字符串文字和逐字符串的示例。的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript 有文字字符串吗?

我可以在逐字字符串文字中转义双引号吗?

我可以在逐字字符串文字中转义双引号吗?

python中让打印有不同的颜色

将文字反斜杠后跟一个字符转换为相应的转义序列

:字符串文本各种打印转义序列手动输入raw_input()