js格式化数字/日期

时间:2022-04-07 14:04:06
js格式化数字/日期js格式化数字/日期     /*
js格式化数字/日期    function Format(const Format: string; const Args: array of const): string; overload;
js格式化数字/日期Format参数是一个格式字符串,用于格式化Args里面的值的。Args又是什么呢,
js格式化数字/日期它是一个变体数组,即它里面可以有多个参数,而且每个参数可以不同。
js格式化数字/日期如以下例子:
js格式化数字/日期    Format('my name is %6s',['wind']);
js格式化数字/日期返回后就是
js格式化数字/日期my name is wind
js格式化数字/日期
js格式化数字/日期现在来看Format参数的详细情况:
js格式化数字/日期Format里面可以写普通的字符串,比如'my name is' 
js格式化数字/日期但有些格式指令字符具有特殊意义,比如"%6s"
js格式化数字/日期
js格式化数字/日期格式指令具有以下的形式:
js格式化数字/日期"%" [index ":"] ["-"] [width] ["." prec] type
js格式化数字/日期它是以"%"开始,而以type结束,type表示一个具体的类型。中间是用来
js格式化数字/日期格式化type类型的指令字符,是可选的。
js格式化数字/日期
js格式化数字/日期先来看看type,type可以是以下字符:
js格式化数字/日期d 十制数,表示一个整型值
js格式化数字/日期u 和d一样是整型值,但它是无符号的,而如果它对应的值是负的,则返回时
js格式化数字/日期  是一个2的32次方减去这个绝对值的数
js格式化数字/日期  如:Format('this is %u',[-2]);
js格式化数字/日期  返回的是:this is 4294967294
js格式化数字/日期f 对应浮点数
js格式化数字/日期e 科学表示法,对应整型数和浮点数,
js格式化数字/日期  比如Format('this is %e',[-2.22]);
js格式化数字/日期  返回的是:this is -2.22000000000000E+000
js格式化数字/日期  等一下再说明如果将数的精度缩小
js格式化数字/日期g 这个只能对应浮点型,且它会将值中多余的数去掉
js格式化数字/日期  比如Format('this is %g',[02.200]);
js格式化数字/日期  返回的是:this is 2.2
js格式化数字/日期n 只能对应浮点型,将值转化为号码的形式。看一个例子就明白了
js格式化数字/日期  Format('this is %n',[4552.2176]);
js格式化数字/日期  返回的是this is 4,552.22
js格式化数字/日期  注意有两点,一是只表示到小数后两位,等一下说怎么消除这种情况
js格式化数字/日期  二是,即使小数没有被截断,它也不会也像整数部分一样有逗号来分开的
js格式化数字/日期m 钱币类型,但关于货币类型有更好的格式化方法,这里只是简单的格式化
js格式化数字/日期  另外它只对应于浮点值
js格式化数字/日期  Format('this is %m',[9552.21]);
js格式化数字/日期返回:this is ¥9,552.21
js格式化数字/日期p 对应于指针类型,返回的值是指针的地址,以十六进制的形式来表示
js格式化数字/日期  例如:
js格式化数字/日期  var X:integer;
js格式化数字/日期    p:^integer;
js格式化数字/日期  begin
js格式化数字/日期   X:=99;
js格式化数字/日期   p:=@X;
js格式化数字/日期   Edit1.Text:=Format('this is %p',[p]);
js格式化数字/日期  end;
js格式化数字/日期  Edit1的内容是:this is 0012F548
js格式化数字/日期s 对应字符串类型,不用多说了吧
js格式化数字/日期x 必须是一个整形值,以十六进制的形式返回
js格式化数字/日期  Edit1.Text:=Format('this is %X',[15]);
js格式化数字/日期  返回是:this is F
js格式化数字/日期  
js格式化数字/日期  类型讲述完毕,下面介绍格式化Type的指令:
js格式化数字/日期[index ":"] 这个要怎么表达呢,看一个例子
js格式化数字/日期            Format('this is %d %d',[12,13]);
js格式化数字/日期            其中第一个%d的索引是0,第二个%d是1,所以字符显示的时候
js格式化数字/日期            是这样 this is 12 13
js格式化数字/日期
js格式化数字/日期            而如果你这样定义:
js格式化数字/日期            Format('this is %1:d %0:d',[12,13]);
js格式化数字/日期            那么返回的字符串就变成了
js格式化数字/日期            this is 13 12
js格式化数字/日期            现在明白了吗,[index ":"] 中的index指示Args中参数显示的
js格式化数字/日期            顺序
js格式化数字/日期
js格式化数字/日期            还有一种情况,如果这样Format('%d %d %d %0:d %d', [1, 2, 3, 4])
js格式化数字/日期            将返回1 2 3 1 2。
js格式化数字/日期            如果你想返回的是1 2 3 1 4,必须这样定:
js格式化数字/日期            Format('%d %d %d %0:d %3:d', [1, 2, 3, 4])
js格式化数字/日期            但用的时候要注意,索引不能超出Args中的个数,不然会引起异常
js格式化数字/日期            如Format('this is %2:d %0:d',[12,13]);
js格式化数字/日期            由于Args中只有12 13 两个数,所以Index只能是0或1,这里为2就错了
js格式化数字/日期[width] 指定将被格式化的值占的宽度,看一个例子就明白了
js格式化数字/日期        Format('this is %4d',[12]);
js格式化数字/日期        输出是:this is   12
js格式化数字/日期        这个是比较容易,不过如果Width的值小于参数的长度,则没有效果。
js格式化数字/日期        如:Format('this is %1d',[12]);
js格式化数字/日期        输出是:this is 12
js格式化数字/日期["-"]  这个指定参数向左齐,和[width]合在一起最可以看到效果:
js格式化数字/日期       Format('this is %-4d,yes',[12]);
js格式化数字/日期       输出是:this is 12   ,yes
js格式化数字/日期        
js格式化数字/日期["." prec] 指定精度,对于浮点数效果最佳:
js格式化数字/日期           Format('this is %.2f',['1.1234]);
js格式化数字/日期           输出 this is 1.12
js格式化数字/日期           Format('this is %.7f',['1.1234]);
js格式化数字/日期           输了 this is 1.1234000
js格式化数字/日期
js格式化数字/日期           而对于整型数,如果prec比如整型的位数小,则没有效果
js格式化数字/日期           反之比整形值的位数大,则会在整型值的前面以0补之
js格式化数字/日期           Format('this is %.7d',[1234]);
js格式化数字/日期           输出是:this is 0001234]
js格式化数字/日期          
js格式化数字/日期           对于字符型,刚好和整型值相反,如果prec比字符串型的长度大
js格式化数字/日期           则没有效果,反之比字符串型的长度小,则会截断尾部的字符
js格式化数字/日期           Format('this is %.2s',['1234']);
js格式化数字/日期           输出是 this is 12
js格式化数字/日期           
js格式化数字/日期           而上面说的这个例子:
js格式化数字/日期           Format('this is %e',[-2.22]);
js格式化数字/日期           返回的是:this is -2.22000000000000E+000
js格式化数字/日期           怎么去掉多余的0呢,这个就行啦
js格式化数字/日期           Format('this is %.2e',[-2.22]);
js格式化数字/日期           
js格式化数字/日期好了,第一个总算讲完了,应该对他的应用很熟悉了吧
js格式化数字/日期
js格式化数字/日期
js格式化数字/日期%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
js格式化数字/日期二 FormatDateTime的用法
js格式化数字/日期他的声明为:
js格式化数字/日期function FormatDateTime(const Format: string; DateTime: TDateTime): string; 
js格式化数字/日期overload;
js格式化数字/日期当然和Format一样还有一种,但这里只介绍常用的第一种
js格式化数字/日期Format参数是一个格式化字符串。DateTime是时间类型。返回值是一种格式化后的
js格式化数字/日期字符串
js格式化数字/日期
js格式化数字/日期重点来看Format参数中的指令字符
js格式化数字/日期c 以短时间格式显示时间,即全部是数字的表示
js格式化数字/日期  FormatdateTime('c',now);
js格式化数字/日期  输出为:2004-8-7 9:55:40
js格式化数字/日期d 对应于时间中的日期,日期是一位则显示一位,两位则显示两位
js格式化数字/日期  FormatdateTime('d',now);
js格式化数字/日期  输出可能为1~31
js格式化数字/日期dd 和d的意义一样,但它始终是以两位来显示的
js格式化数字/日期  FormatdateTime('dd',now);
js格式化数字/日期   输出可能为01~31
js格式化数字/日期ddd 显示的是星期几
js格式化数字/日期   FormatdateTime('ddd',now);
js格式化数字/日期   输出为: 星期六
js格式化数字/日期dddd 和ddd显示的是一样的。
js格式化数字/日期   但上面两个如果在其他国家可能不一样。
js格式化数字/日期ddddd 以短时间格式显示年月日 
js格式化数字/日期    FormatdateTime('ddddd',now);
js格式化数字/日期    输出为:2004-8-7
js格式化数字/日期dddddd 以长时间格式显示年月日
js格式化数字/日期    FormatdateTime('dddddd',now); 
js格式化数字/日期    输出为:2004年8月7日
js格式化数字/日期e/ee/eee/eeee 以相应的位数显示年
js格式化数字/日期     FormatdateTime('ee',now); 
js格式化数字/日期    输出为:04  (表示04年)
js格式化数字/日期m/mm/mmm/mmmm 表示月
js格式化数字/日期     FormatdateTime('m',now);
js格式化数字/日期     输出为:8
js格式化数字/日期     FormatdateTime('mm',now);
js格式化数字/日期     输出为  08
js格式化数字/日期     FormatdateTime('mmm',now);
js格式化数字/日期     输出为  八月
js格式化数字/日期     FormatdateTime('mmmm',now); 
js格式化数字/日期     输出为  八月
js格式化数字/日期    和ddd/dddd 一样,在其他国家可能不同
js格式化数字/日期yy/yyyy 表示年
js格式化数字/日期     FormatdateTime('yy',now);
js格式化数字/日期     输出为 04
js格式化数字/日期     FormatdateTime('yyyy',now);
js格式化数字/日期     输出为 2004
js格式化数字/日期h/hh,n/nn,s/ss,z/zzz 分别表示小时,分,秒,毫秒
js格式化数字/日期t  以短时间格式显示时间
js格式化数字/日期     FormatdateTime('t',now);
js格式化数字/日期    输出为 10:17
js格式化数字/日期tt 以长时间格式显示时间
js格式化数字/日期     FormatdateTime('tt',now);
js格式化数字/日期     输出为10:18:46
js格式化数字/日期ampm 以长时间格式显示上午还是下午
js格式化数字/日期     FormatdateTime('ttampm',now);
js格式化数字/日期     输出为:10:22:57上午
js格式化数字/日期
js格式化数字/日期大概如此,如果要在Format中加普通的字符串,可以用双引号隔开那些
js格式化数字/日期特定义的字符,这样普通字符串中如果含特殊的字符就不会被显示为
js格式化数字/日期时间格式啦:
js格式化数字/日期FormatdateTime('"today is" c',now);
js格式化数字/日期输出为:today is 2004-8-7 10:26:58
js格式化数字/日期时间中也可以加"-"或"\"来分开日期:
js格式化数字/日期FormatdateTime('"today is" yy-mm-dd',now);
js格式化数字/日期FormatdateTime('"today is" yy\mm\dd',now);
js格式化数字/日期输出为: today is 04-08-07
js格式化数字/日期也可以用":"来分开时间  
js格式化数字/日期FormatdateTime('"today is" hh:nn:ss',now);
js格式化数字/日期输出为:today is 10:32:23
js格式化数字/日期%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
js格式化数字/日期
js格式化数字/日期三.FormatFloat的用法
js格式化数字/日期
js格式化数字/日期常用的声明:
js格式化数字/日期function FormatFloat(const Format: string; Value: Extended): string; overload;
js格式化数字/日期和上面一样Format参数为格式化指令字符,Value为Extended类型
js格式化数字/日期为什么是这个类型,因为它是所有浮点值中表示范围最大的,如果传入该方法的参数
js格式化数字/日期比如Double或者其他,则可以保存不会超出范围。
js格式化数字/日期
js格式化数字/日期关键是看Format参数的用法
js格式化数字/日期0  这个指定相应的位数的指令。
js格式化数字/日期   比如:FormatFloat('000.000',22.22);
js格式化数字/日期   输出的就是022.220
js格式化数字/日期   注意一点,如果整数部分的0的个数小于Value参数中整数的位数,则没有效果
js格式化数字/日期   如:FormatFloat('0.00',22.22);
js格式化数字/日期   输出的是:22.22
js格式化数字/日期   但如果小数部分的0小于Value中小数的倍数,则会截去相应的小数和位数
js格式化数字/日期   如:FormatFloat('0.0',22.22);
js格式化数字/日期   输出的是:22.2
js格式化数字/日期   
js格式化数字/日期   也可以在整数0中指定逗号,这个整数位数必须大于3个,才会有逗号出句
js格式化数字/日期   FormatFloat('0,000.0',2222.22);
js格式化数字/日期   输出是:2,222.2
js格式化数字/日期   如果这样FormatFloat('000,0.0',2222.22);
js格式化数字/日期   它的输出还是:2,222.2
js格式化数字/日期   注意它的规律
js格式化数字/日期
js格式化数字/日期#  和0的用法一样,目前我还没有测出有什么不同。
js格式化数字/日期   FormatFloat('##.##',22.22);
js格式化数字/日期   输出是:22.00
js格式化数字/日期
js格式化数字/日期E  科学表示法,看几个例子大概就明白了
js格式化数字/日期   FormatFloat('0.00E+00',2222.22);
js格式化数字/日期   输出是 2.22E+03
js格式化数字/日期   FormatFloat('0000.00E+00',2222.22);
js格式化数字/日期   输出是 2222.22E+00
js格式化数字/日期    FormatFloat('00.0E+0',2222.22);
js格式化数字/日期   22.2E+2
js格式化数字/日期   明白了吗,全靠E右边的0来支配的。
js格式化数字/日期   
js格式化数字/日期这个方法并不难,大概就是这样子了。
js格式化数字/日期
js格式化数字/日期上面三个方法是很常用的,没有什么技巧,只要记得这些规范就行了。 
js格式化数字/日期
js格式化数字/日期    
*/