Delphi 2009 + Unicode + Char-size - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T17:20:24Z http://stackoverflow.com/feeds/question/126044 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/126044/delphi-2009-unicode-char-size 3 Delphi 2009 + Unicode + Char-size Holgerwa 2008-09-24T08:33:07Z 2008-09-24T16:20:03Z <p>Hello! I just got Delphi 2009 and have previously read some articles about modifications that might be necessary because of the switch to Unicode strings. Mostly, it is mentioned that sizeof(char) is not guaranteed to be 1 anymore. But why would this be interesting regarding string manipulation?</p> <p>For example, if I use an AnsiString:='Test' and do the same with a String (which is unicode now), then I get Length() = 4 which is correct for both cases. Without having tested it, I'm sure all other string manipulation functions behave the same way and decide internally if the argument is a unicode string or anything else.</p> <p>Why would the actual size of a char be of interest for me if I do string manipulations? (Of course if I use strings as strings and not to store any other data)</p> <p>Thanks for any help! Holger</p> http://stackoverflow.com/questions/126044/delphi-2009-unicode-char-size/126061#126061 0 Answer by 1800 INFORMATION for Delphi 2009 + Unicode + Char-size 1800 INFORMATION 2008-09-24T08:43:32Z 2008-09-24T08:43:32Z <p>The actual size of a character shouldn't matter, unless you are doing the manipulation at the byte level.</p> http://stackoverflow.com/questions/126044/delphi-2009-unicode-char-size/126071#126071 0 Answer by rik for Delphi 2009 + Unicode + Char-size rik 2008-09-24T08:45:49Z 2008-09-24T08:45:49Z <blockquote> <p>(Of course if I use strings as strings and not to store any other data)</p> </blockquote> <p>That's the key point, YOU don't use strings for other purposes, but some people do. They use strings just like arrays, so they (and that's including me) would need to check all such uses to make sure nothing is broken...</p> http://stackoverflow.com/questions/126044/delphi-2009-unicode-char-size/126079#126079 0 Answer by Loesje for Delphi 2009 + Unicode + Char-size Loesje 2008-09-24T08:48:57Z 2008-09-24T15:20:28Z <p>I didn't try Delphi 2009, but are using fpc which is also switching to unicode slowly. I'm 95% sure that everything below also holds for Delphi 2009</p> <p>In fpc (when supporting unicode) it will be so that functions like 'length' take the codepage into consideration. Thus it will return the length of the string as a 'human' would see it. If there are - for example - two chinese characters, that both take two bytes of memory in unicode, length will return 2, since there are two characters in the string. But the string will take 4 bytes of memory. (+the memory for the reference count and the leading #0, but that aside)</p> <p>What you can not do anymore is this: </p> <pre><code>var p : pchar; begin p := s[1]; for i := 0 to length(string)-1 do begin write(p); inc(p); end; end; </code></pre> <p>Because this code will - in the two chinese-character example - write the wrong two characters. Namely the two bytes which are part of the first 'real' character.</p> <p>In short: Length() doesn't return the amount of bytes allocated for the string anymore, but the amount of characters. (Before the switch to unicode, those two values were equal to eachother)</p> http://stackoverflow.com/questions/126044/delphi-2009-unicode-char-size/126821#126821 2 Answer by Craig Stuntz for Delphi 2009 + Unicode + Char-size Craig Stuntz 2008-09-24T12:26:00Z 2008-09-24T12:26:00Z <p>People often implicitly convert from characters to bytes in old Delphi code without really thinking about it. For example, when writing to a stream. When you write a string to a stream, you have to specify the number of bytes you write, but people often pass the character count instead. See <a href="http://chrisbensen.blogspot.com/2007/11/unicode-sizeof-is-different-than-length.html" rel="nofollow">this post from Chris Bensen</a> for another example.</p> <p>Another way people often make this implicit conversion and older code is by using a "string" to store binary data. In this case, they actually want bytes, but the data type expects characters. D2009 has <a href="http://chrisbensen.blogspot.com/2008/01/unicode-sizeofchar-and-sizeofbyte.html" rel="nofollow">a better type for this</a>. </p> http://stackoverflow.com/questions/126044/delphi-2009-unicode-char-size/127031#127031 0 Answer by skamradt for Delphi 2009 + Unicode + Char-size skamradt 2008-09-24T13:11:35Z 2008-09-24T13:11:35Z <p>Lets not forget that there are times when this conversion is not really desired. Say for storing a GUID in a record for instance. The guid can only contain hexadecimal characters plus the - and brackets...making them take up twice the space can make quite an impact on existing code. Sure the simple solution is to change them to AnsiString, and deal with the compiler warnings if you do any string manipulation on them.</p> http://stackoverflow.com/questions/126044/delphi-2009-unicode-char-size/128164#128164 3 Answer by Jim McKeeth for Delphi 2009 + Unicode + Char-size Jim McKeeth 2008-09-24T16:20:03Z 2008-09-24T16:20:03Z <p>With Unicode <em>SizeOf(SomeChar) &lt;> Length(SomeChar)</em>. Essentially the length of a <strong>string</strong> is less then the sum of the size of its <strong>char</strong>s. As long as you don't assume <em>SizeOf(Char) = 1</em>, or <em>SizeOf(SomeString[x]) = 1</em> (since both are <strong>FALSE</strong> now) or try to interchange <strong>byte</strong>s with <strong>char</strong>s, then you shouldn't have any trouble. Any place you are doing something creative stuffing <strong>Byte</strong>s into <strong>Char</strong>s or <strong>String</strong>s, then you will need to use <strong>AnsiString</strong>.</p> <p>(SizeOf(SomeString) is still 4 no matter the length since it is essentially a pointer with some compiler magic.)</p>