Escape problem with hex - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T02:14:00Z http://stackoverflow.com/feeds/question/728308 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/728308/escape-problem-with-hex 1 Escape problem with hex Allyn 2009-04-08T02:41:00Z 2009-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#728352 0 Answer by Brian Campbell for Escape problem with hex Brian Campbell 2009-04-08T02:55:14Z 2009-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&gt; '65'.hex.chr =&gt; "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&gt; ['65'.hex].pack("C") =&gt; "e" irb(main):004:0&gt; ['66', '6f', '6f'].map {|x| x.hex}.pack("C*") =&gt; "foo" </code></pre> http://stackoverflow.com/questions/728308/escape-problem-with-hex/731372#731372 3 Answer by Sarah Mei for Escape problem with hex Sarah Mei 2009-04-08T18:58:17Z 2009-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 &lt;1.9.</p> http://stackoverflow.com/questions/728308/escape-problem-with-hex/731445#731445 1 Answer by rampion for Escape problem with hex rampion 2009-04-08T19:21:44Z 2009-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&gt; [0x65].pack('U') #=&gt; "e" irb&gt; "e"[0] #=&gt; 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&gt; "\\x#{65}" #=&gt; "\\x65" irb&gt; "\\x65".split('') #=&gt; ["\\", "x", "6", "5"] </code></pre>