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

发布于 2024-07-09 12:36:17 字数 134 浏览 8 评论 0 原文

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

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

吻泪 2024-07-16 12:36:17

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

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

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

function IntToAnsiStr(X: Integer; Width: Integer = 0): AnsiString;
begin
   Str(X: Width, Result);
end;
俏︾媚 2024-07-16 12:36:17

是的,您可以安全地将 IntToStr 返回的 UnicodeString 转换为 AnsiString。 它安全的原因是它返回的字符串仅包含数字字符 '0''9',而不是任何花哨的 Unicode 数字,因此转换为 AnsiString 不会丢失任何信息。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文