在 Delphi 2009 中将整数值转换为 AnsiString
IntToStr()
函数返回现在为 Unicode 的字符串。 我想转换为 AnsiString
。
我可以安全地使用 AnsiString(IntToStr(I))
吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
IntToStr()
函数返回现在为 Unicode 的字符串。 我想转换为 AnsiString
。
我可以安全地使用 AnsiString(IntToStr(I))
吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
当然。 或者您可以使用
IntToAnsiString
(由 Bob ):Sure. Or you can use
IntToAnsiString
(written by Dr. Bob):是的,您可以安全地将
IntToStr
返回的UnicodeString
转换为AnsiString
。 它安全的原因是它返回的字符串仅包含数字字符'0'
到'9'
,而不是任何花哨的 Unicode 数字,因此转换为AnsiString
不会丢失任何信息。Yes, you can safely convert the
UnicodeString
returned byIntToStr
to anAnsiString
. 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 toAnsiString
will not lose any information.