2011年3月20日日曜日

Erlang エスケープシーケンス

Escape Sequences

Within strings and quoted atoms, the following escape sequences are recognized:
(文字列内またアトム内で、エスケープシーケンスは認識される。)


Sequence Description
\b:backspace
\d:delete
\e:escape
\f:form feed
\n:newline
\r:carriage return
\s:space
\t:tab
\v:vertical tab
\XYZ, \YZ, \Z:character with octal representation XYZ, YZ or Z(8進数表示)
\xXY:character with hexadecimal representation XY(16進数表示)
\x{X...}:character with hexadecimal representation; X... is one or more hexadecimal characters(16進数)
\^a...\^z
\^A...\^Z:control A to control Z
\':single quote
\":double quote
\\:backslash

0 件のコメント:

コメントを投稿