|
The following escape sequences are recognized in the format string:
-
\n Newline (ASCII 10) -
\r Carriage return (ASCII 13) -
\t Tab (ASCII 9) -
\a Bell character (ASCII 7) -
\b Backspace (ASCII 8) -
\e Escape character (ASCII 27) -
\f Form feed (ASCII 12) -
\v Vertical tab (ASCII 11) -
\\ Backslash -
\xhhh Hexadecimal escape. hhh is 1 to 3 hex
digits. -
\0oo Octal escape. 0oo is 1 to 3 octal digits,
with a leading 0.
Copyright © Thunderstone Software Last updated: Wed Sep 10 11:16:28 EDT 2008
|