System.SysUtils.TStringHelper.Parse

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

class function Parse(const Value: Integer): string; overload; static; inline;
class function Parse(const Value: Int64): string; overload; static; inline;
class function Parse(const Value: Boolean): string; overload; static; inline;
class function Parse(const Value: Extended): string; overload; static;inline;

プロパティ

種類 可視性 ソース ユニット
function public System.SysUtils.pas System.SysUtils TStringHelper

説明

Parse は、IntegerBooleanExtended の型を、文字列表現に変換します。

このメソッドは、以下のようにオーバーロード(多重定義)されています。

  • 整数値を、文字列に変換。
  • ブーリアン値を、文字列に変換。
  • 浮動小数点値を、文字列に変換。

関連項目