[Overview][Constants][Types][Classes][Procedures and functions][Variables] |
Try to convert a string to a float.
Source position: line 0
function TryStrToFloat( |
const S: String; |
var Value: Single |
):Boolean; |
const S: String; |
var Value: Double |
):Boolean; |
TryStrToFloat tries to convert the string S to a floating point value, and stores the result in Value. It returns True if the operation was succesful, and False if it failed. This operation takes into account the system settings for floating point representations.
On error, False is returned.
|
Convert a string to a floating-point value. |