Friday, June 22, 2012

Jython Escape sequences


Escape sequences

\newline  : Ignored (Escape newline)
\\  : Backslash (\)
\e: :  Escape (ESC)
\v  : Vertical Tabulation (VT)
\' :  Single Quote (')
\f :  Form Feed (FF)
\OOO  : Character with Octal value OOO
\" : Double quote (")
\n  :Line Feed (LF)
\a  : Beep (BEL)
\r  : Carriage Return (CR)
\xHH  : Hexadecimal Character HH
\b  : BackSpace (BS)
\t  : Horizontal Tabulation (TAB)
\uHHHH: Hexadecial Unicode Character HHHH
\AllCharacter:  left as such

No comments:

Post a Comment