Re: pu$�le

2010-07-18 Thread bearophile
Jonathan M Davis: You should pretty much never deal with each individual char or wchar in a string or wstring. Do the conversion to dchar or dstring if you want to access individual characters. You can also use std.utf.stride() to iterate over to the next code unit which starts a code

Re: pu$�le

2010-07-18 Thread Jonathan M Davis
On Sunday 18 July 2010 04:13:03 bearophile wrote: Jonathan M Davis: You should pretty much never deal with each individual char or wchar in a string or wstring. Do the conversion to dchar or dstring if you want to access individual characters. You can also use std.utf.stride() to iterate