关于数字类型与字符类型转换(30分)

  • 主题发起人 主题发起人 刘朝鹏
  • 开始时间 开始时间

刘朝鹏

Unregistered / Unconfirmed
GUEST, unregistred user!
比如 i=1336.12
怎样把‘i’的内容转换为字符串类型,谢谢!!!
 
用FormatFloat函數即可.
 
i=1336.12
floatToStr(i)
是这个吗?
 
floattostr(i)
formatfloat(formatstring,extended)
floattostrf
format等等都可以的
 
floattostr(i)
最近怎么了,随便翻翻书也找得到
 
string(i)也可以哦
 
floattostr(i)
formatfloat(formatstring,extended)
floattostrf
format等等都可以
 
我想刘兄的意思是取得存放i的地址的内容,
比如用十六进制表现出来.
是吗?

 
floattostr(i)
 
floattostr(i)
format('%f',)
 
请查找DELPHI的在线帮助,找floattostr
FloatToDecimal procedure

Converts a floating-point value to a decimal representation.

FloatToStr function

Converts a floating point value to a string.

FloatToStrF function

Converts a floating point value to a string, using a specified Format, Precision, and Digits.

FloatToText function

Converts a floating-point value to an unterminated character string, using a specified Format, Precision and Digits.

FloatToTextFmt function

Converts a floating-point value to to an unterminated character string, using a specified format.

FormatFloat function

Formats a floating point value.

StrToCurr function

Converts a string to a Currency value.

StrToFloat function

Converts a given string to a floating-point value.

TextToFloat function

Returns a floating-point value from a null-terminated string.
至于STR至FLOAT的反过来就是
 
floattostr(I)
 
FloatToStr()

呵呵~~
 
多人接受答案了。
 
后退
顶部