gpt4 book ai didi

delphi - 在 Delphi 2009 中将整数值转换为 AnsiString

转载 作者:行者123 更新时间:2023-12-03 15:46:01 26 4
gpt4 key购买 nike

IntToStr() 函数返回现在为 Unicode 的字符串。我想转换为 AnsiString。我可以安全地使用 AnsiString(IntToStr(I)) 吗?

最佳答案

当然。或者您可以使用 IntToAnsiString (由 Dr. Bob 编写):

function IntToAnsiStr(X: Integer; Width: Integer = 0): AnsiString;
begin
Str(X: Width, Result);
end;

关于delphi - 在 Delphi 2009 中将整数值转换为 AnsiString,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/343164/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com