Tagged Questions
3
votes
3answers
2k views
Delphi 2009 RawByteString vagaries
Suppose that for some perverse reason you want to display the raw byte contents of a UTF8String.
var
utf8Str : UTF8String;
begin
utf8Str := '€ąćęłńóśźż';
end;
(1) This doesn't do, it ...
0
votes
2answers
1k views
Delphi 2009 - Implicit string to RawByteString conversion warnings
I have just got my hands on D2009 and using it with one of our existing projects - it all compiles fine however I have just picked up DIRegEx to use some regex in the project.
However it's always ...