vote up 2 vote down star

IntToStr() function returns string which is Unicode now. I want converting to AnsiString. Can I use AnsiString(IntToStr(I)) safely?

flag

2 Answers

vote up 0 vote down

Yes, you can safely convert the UnicodeString returned by IntToStr to an AnsiString. The reason it's safe is that the string it returns will only contain the digit characters '0' through '9', not any fancy Unicode digits, so the conversion to AnsiString will not lose any information.

link|flag
vote up 6 vote down

Sure. Or you can use IntToAnsiString (written by Dr. Bob):

function IntToAnsiStr(X: Integer; Width: Integer = 0): AnsiString;
begin
   Str(X: Width, Result);
end;
link|flag
I hope Dr. Bob will write this function for c++ builder too... – mhd Dec 31 at 3:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.