StrToFloat()
StrToFloatDef()
Val()

解决方案 »

  1.   

    function StrToFloat(const S: string): Extended;DescriptionUse StrToFloat to convert astring, S, to a floating-point value. S must consist of an optional sign (+ or -), a string of digits with an optional decimal point, and an optional mantissa. The mantissa consists of 'E' or 'e' followed by an optional sign (+ or -) and a whole number. Leading and trailing blanks are ignored.The DecimalSeparator global variable defines the character that must be used as a decimal point. Thousand separators and currency symbols are not allowed in the string. If S doesn't contain a valid value, StrToFloat raises an EConvertError exception.
      

  2.   

    function StrToFloat(const S: string): Extended;把一个字符串转换成Float.