以下範例展示如何在C# 中顯示一些轉義字元-
using System; using System.Collections.Generic; class Demo { static void Main() { Console.WriteLine("Warning!" + '\u0007'); Console.WriteLine("Test \t Demo Text"); Console.WriteLine("This is it!This is on the next line!"); } }
對於C#中的轉義序列的完整列表−
轉義字元 | 描述 | #模式 |
---|---|---|
\a | 符合響鈴字符,\u0007。 | \a |
\b | 在字元類別中,符合退格字符,\u0008。 | [\b]{3,} |
\t | 符合製表符,\u0009。 | (\w )\t|
匹配回車符,\u000D。 (\r與換行符號不等價, | )\r | (\w ) |
## \v | 符合垂直製表符,\u000B。 | [\v]{2,} |
\f符合換頁符,\u000C。 | [\f]{2,} | |
#符合換行符,\u000A 。 | \r | (\w ) |
以上是C# 支援哪些轉義序列?的詳細內容。更多資訊請關注PHP中文網其他相關文章!