System.SysUtils.IntToStr
Delphi
function IntToStr(Value: Integer): string;
function IntToStr(Value: Int64): string;
C++
extern DELPHI_PACKAGE System::UnicodeString __fastcall IntToStr(int Value)/* overload */;
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
説明
整数を文字列に変換します。
IntToStr は、整数をその数値の 10 進表現を表す文字列に変換します。
符号なし整数を文字列に変換するには、UIntToStr 関数を使用します。
整数を最も短い文字列に変換するには、Str 手続きを使用します。以下に Delphi の場合の例を示します。
Str(123:6, AString); // AString is set to ' 123'