码迷,mamicode.com
首页 > 其他好文 > 详细

转义符 与 转义字符

时间:2015-01-22 17:42:55      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

通常的转移符为“\”,可以由“\”和“%”表示特殊字符。具体对应如下:

 

Argument                           Description                                     中译

\                                     The escaped identifier                        “\”转义标识符号的标志(开头)

                                        C语言中续航符(其后紧跟换行符enter,

                                      不许有任何东西);

\n                                  The newline character                        换行符

\t                                   The tab character                               制表符(8个字符位置)

\\                                   The \ character                                    符号 \

\"                                 The " character                                     符号 “

\ddd                               A character specified by 1 to 3 octal digits     八进制数ddd 对应的ASCII字符

                          eg: \123              //8进制数123 对应的ASCII字符是大写的“S”

%%                               The % character                            符号 %

\a                      The bell character                         响铃(BEL) ()

\b                      The Back Space character                   退格(BS)
\f                      The new page character                 换页(FF)(Ctrl+Enter)
\n                     The newline character                            换行(LF) ()
\r                      The carriage return character                回车(CR) ()
\t                      The horizontal tab character                 水平制表(HT) ()
\v                     The vertical tab character                      垂直制表(VT) ()

转义符 与 转义字符

标签:

原文地址:http://www.cnblogs.com/miracleboy/p/4242097.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!