Can zlib-compressed string contain whitespace? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T12:05:07Z http://stackoverflow.com/feeds/question/873544 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/873544/can-zlib-compressed-string-contain-whitespace 1 Can zlib-compressed string contain whitespace? Pyetras 2009-05-16T23:35:12Z 2009-05-20T00:25:33Z <p>Can zlib-compressed string contain whitespace? By whitespace I mean ' ', \n, \t.</p> http://stackoverflow.com/questions/873544/can-zlib-compressed-string-contain-whitespace/873547#873547 3 Answer by RichieHindle for Can zlib-compressed string contain whitespace? RichieHindle 2009-05-16T23:36:46Z 2009-05-16T23:51:12Z <p>Yes; it's just a stream of bytes. Any byte value can appear in there (including zero, which is more likely to cause you problems than whitespace characters!)</p> http://stackoverflow.com/questions/873544/can-zlib-compressed-string-contain-whitespace/873568#873568 4 Answer by dF for Can zlib-compressed string contain whitespace? dF 2009-05-16T23:47:11Z 2009-05-20T00:25:33Z <p>Any byte can appear in a zlib-compresed string. </p> <p>In fact, for a long enough properly compressed string, any byte (from 0 to 255) should have a more-or-less equal probability, or else the string could be further compressed.</p> <p>You can try this yourself -- for example using Python:</p> <pre><code>&gt;&gt;&gt; z = open('/dev/urandom').read(1000000).encode('zlib') # compress a long string of junk &gt;&gt;&gt; [z.count(chr(i)) for i in range(256)] # number of occurrences of each byte [3936, 3861, 3978, 3951, 3858, 3937, 3945, 3828, 3984, 3871, 3985, 3961, 3879, 3924, 3817, 3984, 3963, 3858, 4029, 3903, 3884, 3817, ... yada ... </code></pre>