Can zlib-compressed string contain whitespace? By whitespace I mean ' ', \n, \t.
|
|
|
|
|
|
|
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!) |
|||
|
|
|
|
Any byte can appear in a zlib-compresed string. 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. You can try this yourself -- for example using Python:
|
|||
|
