Can zlib-compressed string contain whitespace? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T12:05:07Zhttp://stackoverflow.com/feeds/question/873544http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/873544/can-zlib-compressed-string-contain-whitespace1Can zlib-compressed string contain whitespace?Pyetras2009-05-16T23:35:12Z2009-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#8735473Answer by RichieHindle for Can zlib-compressed string contain whitespace?RichieHindle2009-05-16T23:36:46Z2009-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#8735684Answer by dF for Can zlib-compressed string contain whitespace?dF2009-05-16T23:47:11Z2009-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>>>> z = open('/dev/urandom').read(1000000).encode('zlib') # compress a long string of junk
>>> [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>