From: Steven Lumos Date: 2007-09-13T08:36:48+09:00 Subject: Re: what is this syntax: \001\002 ? % cheat string string: Ruby 1.8 String Literal [...] |---------+------------------| | Format | Translation | |---------+------------------| | \nnn | Octal nnn | | \xnn | Hexadecimal 0xnn | | \cx | Control-x | Control-x == (?x & 0b10011111) | \C-x | Control-x | | \M-x | Meta-x | Meta-x == (?x | 0b10000000) | \M-\C-x | Meta-control-x | | \x | x | | #{expr} | Value of expr | |---------+------------------| [...] Steve