Converting a paragraph to hex notatation, then back to string - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T13:48:21Z http://stackoverflow.com/feeds/question/219604 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/219604/converting-a-paragraph-to-hex-notatation-then-back-to-string 0 Converting a paragraph to hex notatation, then back to string Anonymous Box 2008-10-20T19:38:01Z 2009-06-30T18:17:52Z <p>Hi,</p> <p>How would you convert a parapraph to hex notation, and then back again into its original string form?</p> <p>(C#)</p> <p>A side note: would putting the string into hex format shrink it the most w/o getting into hardcore shrinking algo's?</p> http://stackoverflow.com/questions/219604/converting-a-paragraph-to-hex-notatation-then-back-to-string/219619#219619 0 Answer by corey goldberg for Converting a paragraph to hex notatation, then back to string corey goldberg 2008-10-20T19:41:37Z 2008-10-20T19:41:37Z <pre><code>public string ConvertToHex(string asciiString) { string hex = ""; foreach (char c in asciiString) { int tmp = c; hex += String.Format("{0:x2}", (uint)System.Convert.ToUInt32(tmp.ToString())); } return hex; } </code></pre> http://stackoverflow.com/questions/219604/converting-a-paragraph-to-hex-notatation-then-back-to-string/219620#219620 2 Answer by Jon Skeet for Converting a paragraph to hex notatation, then back to string Jon Skeet 2008-10-20T19:41:51Z 2008-10-20T19:47:33Z <p>What exactly do you mean by "hex notation"? That usually refers to encoding binary data, not text. You'd need to encode the text somehow (e.g. using UTF-8) and then encode the binary data as text by converting each byte to a pair of characters.</p> <pre><code>using System; using System.Text; public class Hex { static void Main() { string original = "The quick brown fox jumps over the lazy dog."; byte[] binary = Encoding.UTF8.GetBytes(original); string hex = BytesToHex(binary); Console.WriteLine("Hex: {0}", hex); byte[] backToBinary = HexToBytes(hex); string restored = Encoding.UTF8.GetString(backToBinary); Console.WriteLine("Restored: {0}", restored); } private static readonly char[] HexChars = "0123456789ABCDEF".ToCharArray(); public static string BytesToHex(byte[] data) { StringBuilder builder = new StringBuilder(data.Length*2); foreach(byte b in data) { builder.Append(HexChars[b &gt;&gt; 4]); builder.Append(HexChars[b &amp; 0xf]); } return builder.ToString(); } public static byte[] HexToBytes(string text) { if ((text.Length &amp; 1) != 0) { throw new ArgumentException("Invalid hex: odd length"); } byte[] ret = new byte[text.Length/2]; for (int i=0; i &lt; text.Length; i += 2) { ret[i/2] = (byte)(ParseNybble(text[i]) &lt;&lt; 4 | ParseNybble(text[i+1])); } return ret; } private static int ParseNybble(char c) { if (c &gt;= '0' &amp;&amp; c &lt;= '9') { return c-'0'; } if (c &gt;= 'A' &amp;&amp; c &lt;= 'F') { return c-'A'+10; } if (c &gt;= 'a' &amp;&amp; c &lt;= 'f') { return c-'A'+10; } throw new ArgumentOutOfRangeException("Invalid hex digit: " + c); } } </code></pre> <p>No, doing this would not shrink it at all. Quite the reverse - you'd end up with a lot more text! However, you could compress the binary form. In terms of representing arbitrary binary data as text, Base64 is more efficient than plain hex. Use <a href="http://msdn.microsoft.com/en-us/library/dhx0d524.aspx" rel="nofollow">Convert.ToBase64String</a> and <a href="http://msdn.microsoft.com/en-us/library/system.convert.frombase64string.aspx" rel="nofollow">Convert.FromBase64String</a> for the conversions.</p> http://stackoverflow.com/questions/219604/converting-a-paragraph-to-hex-notatation-then-back-to-string/219635#219635 0 Answer by coppro for Converting a paragraph to hex notatation, then back to string coppro 2008-10-20T19:47:17Z 2008-10-20T19:47:17Z <p>While I can't help much on the C# implementation, I would highly recommend <a href="http://en.wikipedia.org/wiki/Lzw" rel="nofollow">LZW</a> as a simple-to-implement data compression algorithm for you to use.</p> http://stackoverflow.com/questions/219604/converting-a-paragraph-to-hex-notatation-then-back-to-string/223444#223444 0 Answer by Patrick Szalapski for Converting a paragraph to hex notatation, then back to string Patrick Szalapski 2008-10-21T20:45:17Z 2008-10-21T20:45:17Z <p>Perhaps the answer can be more quickly reached if we ask: what are you really trying to do? Converting an ordinary string to a string of a hex representation seems like the wrong approach to anything, unless you are making a hexidecimal/encoding tutorial for the web.</p> http://stackoverflow.com/questions/219604/converting-a-paragraph-to-hex-notatation-then-back-to-string/1065167#1065167 0 Answer by Hafthor for Converting a paragraph to hex notatation, then back to string Hafthor 2009-06-30T18:17:52Z 2009-06-30T18:17:52Z <pre><code>static byte[] HexToBinary(string s) { byte[] b = new byte[s.Length / 2]; for (int i = 0; i &lt; b.Length; i++) b[i] = Convert.ToByte(s.Substring(i * 2, 2), 16); return b; } static string BinaryToHex(byte[] b) { StringBuilder sb = new StringBuilder(b.Length * 2); for (int i = 0; i &lt; b.Length; i++) sb.Append(Convert.ToString(256 + b[i], 16).Substring(1, 2)); return sb.ToString(); } </code></pre>