On 11/28/2013 10:19 AM, H. S. Teoh wrote: > Always decoding strings > *is* slow, esp. when you already know that it only contains ASCII > characters. It doesn't have to be merely ASCII. You can do string substring searches without any need for decoding, for example. You don't even need decoding to do regex. Decoding is rarely needed.