社区
非技术区
帖子详情
如何把integer转成string?
blue_coco
2002-01-29 09:19:55
请教,Delphi中有没有类似C的sprintf( "03d", 5 );的涵数,其输出为"001"
...全文
803
12
打赏
收藏
如何把integer转成string?
请教,Delphi中有没有类似C的sprintf( "03d", 5 );的涵数,其输出为"001"
复制链接
扫一扫
分享
转发到动态
举报
写回复
配置赞助广告
用AI写文章
12 条
回复
切换为时间正序
请发表友善的回复…
发表回复
打赏红包
lxf196921
2002-01-29
打赏
举报
回复
format ('3.3d%',[i])肯定行,我做过
cow8063
2002-01-29
打赏
举报
回复
都对
dregs2002
2002-01-29
打赏
举报
回复
format('%3.0d',[数字]);
jianghuxiaozi
2002-01-29
打赏
举报
回复
inttostr
format
wangb26
2002-01-29
打赏
举报
回复
IntStr := IntToStr(IntNum)
BraveYang
2002-01-29
打赏
举报
回复
可以用FormatFloat('000',5)将就
另外你也可以自己编个函数
blue_coco
2002-01-29
打赏
举报
回复
各为用IntToStr和Format生成的数前面不补零啊!
williexu
2002-01-29
打赏
举报
回复
strNum:=InttoStr(intNum);
dy2712
2002-01-29
打赏
举报
回复
var
i:integer
str:string;
begin
i:=1;
str:=format('%3.0d',[i]);
end;
w19995
2002-01-29
打赏
举报
回复
用format、IntToStr.
torrentwang
2002-01-29
打赏
举报
回复
IntToStr();
format;
lxf196921
2002-01-29
打赏
举报
回复
str:=format('3.3d%',[i]);
肯定行,我用过,记得给分啊。
String
与
Integer
相互转换
String
与
Integer
相互转换 //方法一:
Integer
类的静态方法to
String
()
Integer
a = 2;
String
str =
Integer
.to
String
(a) //方法二:
Integer
类的成员方法to
String
()
Integer
a = 2;
String
str = a.to
String
(); //...
integer
转
string
java_
Integer
转换为
String
类型
在学习泛型时,遇到了一...
Integer
类型转换为
String
类型,本来想直接用强制转换,结果报错:Exception in thread "main" java.lang.ClassCastException: java.lang.
Integer
cannot be cast to java.lang.
String
经过...
Integer
类型和
String
类型相互转化
1、
Integer
转
String
String
s =
String
.valueOf(i);
String
s =
Integer
.to
String
(i); 2、
String
转
Integer
int i =
Integer
.parseInt(s); int i =
Integer
.valueOf(s).intValue();
在C ++中将
String
转换为
Integer
并将
Integer
转换为
String
In this article, we will understand how to convert an
integer
to a
string
in C++. We often come across situations wherein we need to convert the data type of the input variable from one type to anothe...
怎么把
String
类型转化成
Integer
类型???
怎么把
String
类型转化成
Integer
类型??? [问题点数:20分,结帖人java2000_net] 不显示删除回复 显示所有回复 显示星级回复 显示得分回复 只显示楼主 收藏 关注 ppsdog...
非技术区
830
社区成员
53,573
社区内容
发帖
与我相关
我的任务
非技术区
Delphi 非技术区
复制链接
扫一扫
分享
社区描述
Delphi 非技术区
社区管理员
加入社区
获取链接或二维码
近7日
近30日
至今
加载中
查看更多榜单
社区公告
暂无公告
试试用AI创作助手写篇文章吧
+ 用AI写文章