From: Alvaro Perez Date: 2007-08-17T01:08:53+09:00 Subject: Re: Double quote escape character It卒s a bit strange this. On my irb: irb(main):053:0> p "\"hello\"" "\"hello\"" irb(main):049:0> h = '""hello""' => "\"\"hello\"\"" irb(main):044:0> string = "hello" => "hello" irb(main):046:0> %Q{#{string}} => "hello" irb(main):047:0> p string "hello" irb(main):048:0> puts "\"\"hello\"\"" ""hello"" I卒m not pretty sure, but the last one it卒s the only that seems to produce exactly what i was looking for... Because "\"\"hello\"\"" != ""hello"" right? or it is altough irb shows it in different ways? -- Posted via http://www.ruby-forum.com/.