Delphi 格式化函数Format、FormatDateTime与FormatFloat详解
- Format函数
- %d 代表一个整数
- %u 代表一个无负号整数
- %s 代表字符串
- %f 代表浮点数(保留或凑够两位小数点 )
- %g 代表浮点数(会去掉多余的 0)
- %n 代表浮点数(整数部分使用千位分隔符, 保留两位小数点)
- %m 代表浮点数(加货币记号, 转换结果取决于系统的地域设置)
- %e 代表用科学计数法表示整数或浮点数
- %p 代表指针地址(用十六进制表示)
- %x 用十六进制表示一个整数
- %0:s 用序号来指定替换顺序
- %1:s%0:s%0:s%1:s 反复使用 序号
- %d,%8d,%d 指定了8个字符的宽度, 少了就用空格凑足8个字符, 多了则无效果。
- %d,%-8d,%d - 表示左对齐, 默认是右对齐的
- %.9f 指定小数点的位数, 取值范围1-9, 输入0也当1用
- %.5d 这是给整数指定位数, 如果小了则无效
- %.3s 给字符串指定位数, 如果超过了源字符串长度则无效
- %.3e 给科学计数法指定位数
- "%" [index ":"] ["-"] [width] ["." prec] type 指令顺序
- FormatDateTime
- c 表示用短格式显示日期与时间
- ddddd 五个 d 表示短格式日期
- dddddd 六个 d 表示长格式日期
- e 表示年, 1位
- ee 表示年, 2位
- eee 与 eeee 表示年, 返回4位数年
- m 表示月, 1位
- mm 表示月, 2位
- mmm 与 mmmm 表示长格式月
- d 表示日
- dd 表示双位日
- ddd 与 dddd 表示星期; 可能对不同的语种会有区别
- h hh 表示时
- n nn 表示分
- s ss 表示秒
- z zz zzz 表示毫秒
- y yy yyy yyyy 表示年; 和 e 略有不同
- t tt 表示时间
- ampm 表示上午、下午
- 使用分隔符, - 是默认的, / 是与 - 等效的, 假如我非要用 / 显示呢?
- 混入的字符串要包含在双引号中
- FormatFloat
Format函数
根据指定所需要的格式,格式化字符串。
原型: function Format(const Format: string const Args: array of const): string;
按我的理解这其实就是一个替换函数,把第二个参数[]中的数据依次替换第一个参数中的%x,
而我们只要记住%x的具体含义就能玩转这个函数。
%d 代表一个整数
//返回: 最大整数是: 2147483647; 最小整数是: -2147483648
s := Format('最大整数是: %d; 最小整数是: %d', [High(Integer), Low(Integer)]);
%u 代表一个无负号整数
//返回: 最大的无符号整数是: 4294967295
s := Format('最大的无负号整数是: %u', [High(Cardinal)]);
%s 代表字符串
//返回: 你好! 我是万一
s := Format('%s! %s', ['你好', '我是万一']);
%f 代表浮点数(保留或凑够两位小数点 )
//返回: Pi的值是: 3.14
s := Format('%f', [Pi]);
%g 代表浮点数(会去掉多余的 0)
//返回: 1.2345
s := Format('%g',[01.2345000]);
%n 代表浮点数(整数部分使用千位分隔符, 保留两位小数点)
//返回: 12,345.68
s := Format('%n',[12345.6789]);
%m 代表浮点数(加货币记号, 转换结果取决于系统的地域设置)
//返回: ¥12,345.68
s := Format('%m',[12345.6789]);
%e 代表用科学计数法表示整数或浮点数
//返回: 1.23456789000000E+004
s := Format('%e',[12345.6789]);
%p 代表指针地址(用十六进制表示)
//返回: 0012F5BC
s := Format('%p',[@Self]);
%x 用十六进制表示一个整数
//返回: FF
s := Format('%x',[255]);
如果想要指定输出一个8位十六进制(比如内存地址),可以使用%.8x
%0:s 用序号来指定替换顺序
//返回: 一万
s := Format('%1:s%0:s',['万','一']);
%1:s%0:s%0:s%1:s 反复使用 序号
//返回:一万万一
s := Format('%1:s%0:s%0:s%1:s',['万','一']);
%d,%8d,%d 指定了8个字符的宽度, 少了就用空格凑足8个字符, 多了则无效果。
//返回: 1, 2,3
s := Format('%d,%8d,%d',[1,2,3]);
%d,%-8d,%d - 表示左对齐, 默认是右对齐的
//返回: 1,2 ,3
s := Format('%d,%-8d,%d',[1,2,3]);
%.9f 指定小数点的位数, 取值范围1-9, 输入0也当1用
//返回: 3.141592654
s := Format('%.9f',[Pi]);
%.5d 这是给整数指定位数, 如果小了则无效
//返回: 00012
s := Format('%.5d',[12]);
%.3s 给字符串指定位数, 如果超过了源字符串长度则无效
//返回: For
s := Format('%.3s',['Format']);
%.3e 给科学计数法指定位数
//返回: 1.23E+002
s := Format('%.3e',[123.456]);
"%" [index ":"] ["-"] [width] ["." prec] type 指令顺序
FormatDateTime
原型:function FormatDateTime(const Format: string DateTime: TDateTime): string;
FormatDateTime 的参数1是 String 格式指令, 参数2是 TDateTime 类型的时间
c 表示用短格式显示日期与时间
s := FormatDateTime('c', Now); {返回: 2007-12-18 23:56:05}
ddddd 五个 d 表示短格式日期
s := FormatDateTime('ddddd', Now); {返回: 2007-12-19}
dddddd 六个 d 表示长格式日期
s := FormatDateTime('dddddd', Now); {返回: 2007年12月19日}
e 表示年, 1位
s := FormatDateTime('e', Now); {返回: 7}
ee 表示年, 2位
s := FormatDateTime('ee', Now); {返回: 07}
eee 与 eeee 表示年, 返回4位数年
s := FormatDateTime('eee', Now); {返回: 2007}
s := FormatDateTime('eeee', Now); {返回: 2007}
m 表示月, 1位
s := FormatDateTime('m', Now); {返回: 12}
mm 表示月, 2位
s := FormatDateTime('mm', StrToDateTime('2008-1-1')); {返回: 01}
mmm 与 mmmm 表示长格式月
s := FormatDateTime('mmm', Now); {返回: 十二月}
s := FormatDateTime('mmmm', Now); {返回: 十二月}
d 表示日
s := FormatDateTime('d', Now); {返回: 19}
s := FormatDateTime('d', StrToDateTime('2008-1-1')); {返回: 1}
dd 表示双位日
s := FormatDateTime('dd', Now); {返回: 19}
s := FormatDateTime('dd', StrToDateTime('2008-1-1')); {返回: 01}
ddd 与 dddd 表示星期; 可能对不同的语种会有区别
s := FormatDateTime('ddd', Now); {返回: 周六}
s := FormatDateTime('dddd', Now); {返回: 星期六}
h hh 表示时
s := FormatDateTime('h', StrToDateTime('2007-12-30 9:58:06')); {返回: 9}
s := FormatDateTime('hh', StrToDateTime('2007-12-30 9:58:06')); {返回: 09}
n nn 表示分
s := FormatDateTime('n', StrToDateTime('2007-12-30 9:58:06')); {返回: 58}
s := FormatDateTime('nn', StrToDateTime('2007-12-30 9:58:06')); {返回: 58}
s ss 表示秒
s := FormatDateTime('s', StrToDateTime('2007-12-30 9:58:06')); {返回: 6}
s := FormatDateTime('ss', StrToDateTime('2007-12-30 9:58:06')); {返回: 06}
z zz zzz 表示毫秒
s := FormatDateTime('z', Now); {返回: 24}
s := FormatDateTime('zz', Now); {返回: 524}
s := FormatDateTime('zzz', Now); {返回: 524}
y yy yyy yyyy 表示年; 和 e 略有不同
s := FormatDateTime('y', Now); {返回: 07}
s := FormatDateTime('yy', Now); {返回: 07}
s := FormatDateTime('yyy', Now); {返回: 2007}
s := FormatDateTime('yyyy', Now); {返回: 2007}
t tt 表示时间
s := FormatDateTime('t', Now); {返回: 0:21}
s := FormatDateTime('tt', Now); {返回: 0:22:13}
ampm 表示上午、下午
s := FormatDateTime('ampm', Now); {返回: 上午}
s := FormatDateTime('tampm', Now); {返回: 0:24 上午}
使用分隔符, - 是默认的, / 是与 - 等效的, 假如我非要用 / 显示呢?
s := FormatDateTime('yy/mm/dd', Now); {返回: 07/12/19}
s := FormatDateTime('yy/mm/dd', Now); {返回: 07-12-19}
s := FormatDateTime('yy-mm-dd', Now); {返回: 07-12-19}
s := FormatDateTime('yymmdd', Now); {返回: 071219}
s := FormatDateTime('yy"/"mm"/"dd', Now); {返回: 07/12/19}
混入的字符串要包含在双引号中
s := FormatDateTime('"当前时间是: "yyyy-m-d h:n:s:zz', Now); {返回: 当前时间是: 2007-12-19 0:47:16:576}
FormatFloat
格式化浮点数
原型:function FormatFloat(const Format: string Value: Extended): string;
FormatFloat 的参数1是 String 格式指令, 参数2是实数类型 Extended
//返回: 12.346
s := FormatFloat('###.###',12.3456);
//返回: 012.346
s := FormatFloat('000.000',12.3456);
//返回: 12.3
s := FormatFloat('#.###',12.3);
//返回: 12.300
s := FormatFloat('0.000',12.3);
//返回: 1,234,567
s := FormatFloat('#,#.#',1234567);
//返回: 1,234,567.0
s := FormatFloat('0,0.0',1234567);
//返回: 1.23E+6
s := FormatFloat('0.00E+0',1234567);
//返回: 1.23E+06
s := FormatFloat('0.00E+00',1234567);
//在科学计数法中使用 # 好像不合适?
参看资料:
https://www.cnblogs.com/jijm123/p/11120147.html
http://www.cnblogs.com/del/archive/2007/12/18/1005161.html
http://www.cnblogs.com/del/archive/2007/12/19/1005205.html
http://www.cnblogs.com/del/archive/2007/12/19/1005212.html
http://www.cnblogs.com/sonicit/archive/2007/06/04/769882.html
Delphi 格式化函数Format、FormatDateTime与FormatFloat详解的更多相关文章
- Delphi格式化函数Format、FormatDateTime和FormatFloat详解
转自:http://outofmemory.cn/code-snippet/7631/Delphi-format-hua-function-Format-FormatDateTime-FormatFl ...
- Delphi 格式化函数 Format函数
function Format(const Format: string; const Args: array of const): string; function Format(const For ...
- Delphi中TStringList类常用属性方法详解
TStrings是一个抽象类,在实际开发中,是除了基本类型外,应用得最多的. 常规的用法大家都知道,现在来讨论它的一些高级的用法. 先把要讨论的几个属性列出来: 1.CommaText 2.Delim ...
- 教程-Delphi中Spcomm使用属性及用法详解
Delphi中Spcomm使用属性及用法详解 Delphi是一种具有 功能强大.简便易用和代码执行速度快等优点的可视化快速应用开发工具,它在构架企业信息系统方面发挥着越来越重要的作用,许多程序员愿意选 ...
- Delphi下利用WinIo模拟鼠标键盘详解 有参考价值
https://blog.csdn.net/fgrass_163/article/details/6365296 Delphi下利用WinIo模拟鼠标键盘详解 2011年04月26日 21:03:00 ...
- (转载)--SG函数和SG定理【详解】
在介绍SG函数和SG定理之前我们先介绍介绍必胜点与必败点吧. 必胜点和必败点的概念: P点:必败点,换而言之,就是谁处于此位置,则在双方操作正确的情况下必败. N点:必胜点 ...
- 转:MySQL Row Format(MySQL行格式详解)
MySQL Row Format(MySQL行格式详解) --转载自登博的博客
- SQL Server中排名函数row_number,rank,dense_rank,ntile详解
SQL Server中排名函数row_number,rank,dense_rank,ntile详解 从SQL SERVER2005开始,SQL SERVER新增了四个排名函数,分别如下:1.row_n ...
- Delphi - Windows自动计划任务与ParamStr详解
Windows自动计划任务与ParamStr详解 ParamStr函数: ParamStr(1),..ParamStr(N) ParamStr(1)代表程序入口的第一个参数,同理,ParamStr(N ...
- php strpos() 函数介绍与使用方法详解
本文主要和大家介绍PHP中mb_strpos的使用技巧,通过使用语法以及实例给大家详细分析了用法,需要的朋友参考学习下.希望能帮助到大家.mb_strpos(PHP 4 >= 4.0.6, PH ...
随机推荐
- 黑马Mybatis快速入门
创建user表,添加数据,Mysql: 1 create database mybatis; 2 use mybatis; 3 drop table if exists tb_user; 4 crea ...
- 【KAWAKO】TVM-tflite模型编译与优化
目录 前言 准备模型 版本问题 精度问题 加载tflite模型 编译模型 在python上运行模型进行测试 加载输入数据 运行四连 优化(Autotune) 注: 前言 TVM的编译与优化主要有两种方 ...
- 死磕rmi之远程对象
远程对象 远程对象是啥 继承了UnicastRemoteObject的对象都可称为远程对象 让一个对象继承UnicastRemoteObject的能力,就是把自己发布出去. UnicastRemote ...
- i18n多语言 解决页面一刷新就恢复默认语言问题
- mysql使用经验
1.mysql建表主键,如果整数,用bigint而不用int 2.执行sql加最大执行时间 /*+ max_execution_time(60000)*/ 3.sql中避免offset过大,查询不出来
- 人脸识别:face_recognition初尝试
在学习face_recognition之前先看git上的另一个项目:face_collection .face_collection某种程度上可以看做是demo,便于我们更好的理解和使用face_re ...
- springboot中实现逆向工程
如果这篇文章能给你带来帮助 不胜荣幸,如果有不同的意见也欢迎批评指正,废话不多说直接上代码.(参考文档:https://www.cnblogs.com/kibana/p/8930248.html) 第 ...
- Docker上安装MSSQL(SQL Server)
Mac OS X ,想安装微软的mssql-server数据库有三种方式: 第一种是在本机上安装MSSQL for Linux 版本. 第二种是安装Windows虚拟机,然后在虚拟机里面使用ISO ...
- 苹果App 上架 app store 提示 “构建版本错误”使用Application Loader发布App
步骤1 打开Application Loader(有2种方法) 或 步骤2 使用开发者帐号登录 步骤3 选择需要上传发布的ipa包 选择成功后,会显示ipa包的相关信息 步骤4 上传验证 上传成功 转 ...
- linux中安装doker
1.更新yum为最新的 yum -y update 2.卸载旧版的docker sudo yum remove -y docker* 3.安装需要的软件包 yum install -y yum-uti ...