TExtendedHelper.TryParse

Try to convert a string to a Extended-sized floating point value.

Declaration

Source position: syshelph.inc line 354

public 
  class function TryParse(const AString: string; out AValue: Extended)
                          : Boolean;  Overload;  Static;
  class function TryParse(const AString: string; out AValue: Extended; 
                         const AFormatSettings: TFormatSettings) : Boolean
                         ;  Overload;  Static;

Description

TryParse attempts to convert the string AString to a Extended-sized floating point value and reports True if the conversion was successful. In that case the parsed value is returned in AValue.

If the conversion failed, False is returned.

See also

Name Description
TExtendedHelper.Parse Convert a string to a floating point value
TExtendedHelper.ToString Convert a Extended-sized floating point value to a string