System.SysUtils.TextToFloat

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

Delphi

function TextToFloat(Buffer: PWideChar; var Value; ValueType: TFloatValue): Boolean;
function TextToFloat(Buffer: PWideChar; var Value; ValueType: TFloatValue; const AFormatSettings: TFormatSettings): Boolean;
function TextToFloat(Buffer: PAnsiChar; var Value; ValueType: TFloatValue): Boolean;
function TextToFloat(Buffer: PAnsiChar; var Value; ValueType: TFloatValue; const AFormatSettings: TFormatSettings): Boolean;
function TextToFloat(const S: string; var Value: Extended): Boolean;
function TextToFloat(const S: string; var Value: Extended; const AFormatSettings: TFormatSettings): Boolean;
function TextToFloat(const S: string; var Value: Double): Boolean;
function TextToFloat(const S: string; var Value: Double; const AFormatSettings: TFormatSettings): Boolean;
function TextToFloat(const S: string; var Value: Currency): Boolean;
function TextToFloat(const S: string; var Value: Currency; const AFormatSettings: TFormatSettings): Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall TextToFloat(System::WideChar * Buffer, void *Value, TFloatValue ValueType)/* overload */;

プロパティ

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


説明

警告: TextToFloat の ANSI バージョンは廃止予定です。AnsiStrings ユニットを使用してください。

null 終了文字列を浮動小数点値に変換します。

TextToFloat を使用すると、null 終了文字列 Buffer を、浮動小数点値に変換することができます。 文字列は、+ または - の符号(任意)、小数点(任意)を含む数字の文字列、および、仮数(任意)で構成されている必要があります。 仮数は、'E' または 'e' で、+ または - の符号(任意)と全体の数値がそれに続く形で構成されます。 前後にある空白は無視されます。

変換された値は Value パラメータに割り当てられます。これは Extended 型または Currency 型の変数でなければなりません。そのどちらであるかは ValueType パラメータで指定します。

TextToFloat は、変換が成功した場合に True を、Buffer が有効な浮動小数点値を持っていない場合には False を返します。

TextToFloat の第 1 の形式は、グローバル変数に含まれているローカライズ情報を使用するため、スレッド セーフではありません。 TextToFloat の第 2 の形式は、AFormatSettings パラメータに含まれているローカライズ情報を参照し、スレッド セーフです。 TextToFloat のスレッド セーフ形式を呼び出す前に、AFormatSettings にローカライズ情報を入れる必要があります。 AFormatSettings にデフォルトのローカル値セットを入れるには、TFormatSettings.Create を呼び出します。

コード サンプル