pascal的数据类型转换函数
答案:2 悬赏:20 手机版
解决时间 2021-04-13 04:24
- 提问者网友:浮克旳回音
- 2021-04-12 15:07
有这样函数吗?
最佳答案
- 五星知识达人网友:孤独入客枕
- 2021-04-12 15:28
IntToStr function 整型->字符串型
函数原型:
function IntToStr(Value: Integer): string; overload;
function IntToStr(Value: Int64): string; overload;
StrToBool function 字符串型->布尔型
函数原型:
function StrToBool(const S: string): Boolean;
StrToDate function 字符串型->日期时间型
函数原型:
function StrToDate(const S: string): TDateTime; overload;
function StrToDate(const S: string; const FormatSettings: TFormatSettings): TDateTime;
StrToFloat function 字符串型->浮点型
函数原型:
function StrToFloat(const S: string): Extended; overload;
function StrToFloat(const S: string; const FormatSettings: TFormatSettings): Extended;
StrToInt function 字符串型->整型
函数原型:
function StrToInt(const S: string): Integer;
FloatToStr function 浮点型->字符串型
函数原型:
function FloatToStr(Value: Extended): string; overload;
function FloatToStr(Value: Extended; const FormatSettings: TFormatSettings): string;
只列出了部分常用的,还有很多,可以查看帮助获取!
函数原型:
function IntToStr(Value: Integer): string; overload;
function IntToStr(Value: Int64): string; overload;
StrToBool function 字符串型->布尔型
函数原型:
function StrToBool(const S: string): Boolean;
StrToDate function 字符串型->日期时间型
函数原型:
function StrToDate(const S: string): TDateTime; overload;
function StrToDate(const S: string; const FormatSettings: TFormatSettings): TDateTime;
StrToFloat function 字符串型->浮点型
函数原型:
function StrToFloat(const S: string): Extended; overload;
function StrToFloat(const S: string; const FormatSettings: TFormatSettings): Extended;
StrToInt function 字符串型->整型
函数原型:
function StrToInt(const S: string): Integer;
FloatToStr function 浮点型->字符串型
函数原型:
function FloatToStr(Value: Extended): string; overload;
function FloatToStr(Value: Extended; const FormatSettings: TFormatSettings): string;
只列出了部分常用的,还有很多,可以查看帮助获取!
全部回答
- 1楼网友:行雁书
- 2021-04-12 16:26
inttostr function 整型->字符串型
函数原型:
function inttostr(value: integer): string; overload;
function inttostr(value: int64): string; overload;
strtobool function 字符串型->布尔型
函数原型:
function strtobool(const s: string): boolean;
strtodate function 字符串型->日期时间型
函数原型:
function strtodate(const s: string): tdatetime; overload;
function strtodate(const s: string; const formatsettings: tformatsettings): tdatetime;
strtofloat function 字符串型->浮点型
函数原型:
function strtofloat(const s: string): extended; overload;
function strtofloat(const s: string; const formatsettings: tformatsettings): extended;
strtoint function 字符串型->整型
函数原型:
function strtoint(const s: string): integer;
floattostr function 浮点型->字符串型
函数原型:
function floattostr(value: extended): string; overload;
function floattostr(value: extended; const formatsettings: tformatsettings): string;
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯