首頁  >  文章  >  後端開發  >  C# 支援哪些轉義序列?

C# 支援哪些轉義序列?

PHPz
PHPz轉載
2023-09-04 16:53:02921瀏覽

C# 支持哪些转义序列?

以下範例展示如何在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#中的轉義序列的完整列表−

符合響鈴字符,\u0007。 \a在字元類別中,符合退格字符,\u0008。 [\b]{3,}(\w )\t\r)\r(\w )
轉義字元 描述 #模式
\a
\b
\t 符合製表符,\u0009。

匹配回車符,\u000D。 (\r與換行符號不等價,
## \v 符合垂直製表符,\u000B。 [\v]{2,}
\f

符合換頁符,\u000C。
[\f]{2,}

#符合換行符,\u000A 。 \r (\w )
#\e#########符合轉義符,\u001B 。 ######\e################

以上是C# 支援哪些轉義序列?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除
上一篇:在 C# 中重寫下一篇:在 C# 中重寫