Escape problem with hex - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T02:14:00Zhttp://stackoverflow.com/feeds/question/728308http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/728308/escape-problem-with-hex1Escape problem with hexAllyn2009-04-08T02:41:00Z2009-04-08T19:21:44Z
<p>I need to print escaped characters to a binary file using Ruby. The main problem is that slashes need the whole byte to escape correctly, and I don't know/can't create the byte in such a way.</p>
<p>I am creating the hex value with, basically:</p>
<pre><code>'\x' + char
</code></pre>
<p>Where char is some 'hex' value, such as 65. In hex, \x65 is the ASCII character 'e'.</p>
<p>Unfortunately, when I puts this sequence to the file, I end up with this:</p>
<pre><code>\\x65
</code></pre>
<p>How do I create a hex string with the properly escaped value? I have tried a <strong><em>lot</em></strong> of things, involving single or double quotes, pack, unpack, multiple slashes, etc. I have tried so many different combinations that I feel as though I understand the problem less now then I did when I started.</p>
<p>How?</p>
http://stackoverflow.com/questions/728308/escape-problem-with-hex/728352#7283520Answer by Brian Campbell for Escape problem with hexBrian Campbell2009-04-08T02:55:14Z2009-04-08T18:55:43Z<p>If you have the hex value and you want to create a string containing the character corresponding to that hex value, you can do:</p>
<pre><code>irb(main):002:0> '65'.hex.chr
=> "e"
</code></pre>
<p>Another option is to use <code>Array#pack</code>; this can be used if you need to convert a list of numbers to a single string:</p>
<pre><code>irb(main):003:0> ['65'.hex].pack("C")
=> "e"
irb(main):004:0> ['66', '6f', '6f'].map {|x| x.hex}.pack("C*")
=> "foo"
</code></pre>
http://stackoverflow.com/questions/728308/escape-problem-with-hex/731372#7313723Answer by Sarah Mei for Escape problem with hexSarah Mei2009-04-08T18:58:17Z2009-04-08T18:58:17Z<p>You may need to set binary mode on your file, and/or use putc.</p>
<pre><code>File.open("foo.tmp", "w") do |f|
f.set_encoding(Encoding::BINARY) # set_encoding is Ruby 1.9
f.binmode # only useful on Windows
f.putc "e".hex
end
</code></pre>
<p>Hopefully this can give you some ideas even if you have Ruby <1.9.</p>
http://stackoverflow.com/questions/728308/escape-problem-with-hex/731445#7314451Answer by rampion for Escape problem with hexrampion2009-04-08T19:21:44Z2009-04-08T19:21:44Z<p>Okay, if you want to create a string whose first byte
has the integer value <code>0x65</code>, use <code>Array#pack</code></p>
<pre><code>irb> [0x65].pack('U')
#=> "e"
irb> "e"[0]
#=> 101
</code></pre>
<p>101<sub>10</sub> = 65<sub>16</sub>, so this works.</p>
<p>If you want to create a literal string whose first byte is '\',
second is 'x', third is '6', and fourth is '5', then just use interpolation:</p>
<pre><code>irb> "\\x#{65}"
#=> "\\x65"
irb> "\\x65".split('')
#=> ["\\", "x", "6", "5"]
</code></pre>