C#中打印转义字符的方法
以下是C#中的转义字符,显示列建议了如何在C#中使用和打印它们:
转义字符 | 描述 | 模式 | 显示 |
---|---|---|---|
\a | 匹配铃声字符,\u0007。 | \a | "Warning!" + '\u0007' 中的 "\u0007" |
\b | 在字符类中,匹配退格符,\u0008。 | [\b]{3,} | "\b\b\b\b" 中的 "\b\b\b\b" |
\t | 匹配制表符,\u0009。 | (\w+)\t | "Name\t", "Addr\t" 在 "Name\tAddr\t" 中 |
\r | 匹配回车符,\u000D。(\r 不等同于换行符, .) | \r (\w+) | "\r Hello" 在 "\rHello World." 中 |
\v | 匹配垂直制表符,\u000B。 | [\v]{2,} | "\v\v\v" 中的 "\v\v\v" |
\f | 匹配换页符,\u000C。 | [\f]{2,} | "\f\f\f" 中的 "\f\f\f" |
匹配换行符,\u000A。 | \r (\w+) | "\r Hello" 在 "\rHello World." 中 | |
\e | 匹配转义符,\u001B。 | \e | "\x001B" 中的 "\x001B" |
\nnn | 使用八进制表示法指定字符(nnn最多包含三位数字)。 | \w\040\w | "a b", "c d" 在 "a bc d" 中 |
\x nn | 使用十六进制表示法指定字符(nn正好包含两位数字)。 | \w\x20\w | \w\x20\w |
\c X\c x | 匹配由X或x指定的ASCII控制字符,其中X或x是控制字符的字母。 | \cC | "\x0003" 中的 "\x0003" (Ctrl-C) |
\u nnnn | 使用十六进制表示法匹配Unicode字符(正好四位数字,如nnnn所示)。 | \w\u0020\w | "a b", "c d" 在 "a bc d" 中 |
\ | 如果后跟未识别为转义字符的字符,则匹配该字符。 | \d+[\+-x\*]\d+\d+[\+-x\*\d+ | "2+2" 和 "3*9" 在 "(2+2) * 3*9" 中 |
以下是一个示例,展示如何在C#中使用一些转义字符:
示例
using System; using System.Collections.Generic; class Demo { static void Main() { Console.WriteLine("Warning!" + '\u0007'); Console.WriteLine("Demo Text \t Demo Text"); Console.WriteLine("This is it!
This is on the next line!"); } }
输出
Warning! Demo Text Demo Text This is it! This is on the next line!
广告