服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - C# - String.Format大全(C# Java)

String.Format大全(C# Java)

2021-10-25 13:24小贱 C#

String.format无论是在C#中还是在java中应用都非常广泛,今天小编抽个时间把有关string.format知识总结分享给大家,需要的朋友可以参考下

c#string.format

字符串的数字格式

?
1
2
3
4
5
6
7
stringstr1 =string.format("{0:n1}",56789);  //result: 56,789.0
stringstr2 =string.format("{0:n2}",56789);  //result: 56,789.00
stringstr3 =string.format("{0:n3}",56789);  //result: 56,789.000
stringstr8 =string.format("{0:f1}",56789);  //result: 56789.0
stringstr9 =string.format("{0:f2}",56789);  //result: 56789.00
stringstr11 =(56789 / 100.0).tostring("#.##");  //result: 567.89
stringstr12 =(56789 / 100).tostring("#.##");  //result: 567

c 或 c

货币

?
1
2
console.write("{0:c}", 2.5); / 2.50
console.write("{0:c}", -2.5); //($2.50)

d 或 d

十进制数

?
1
console.write("{0:d5}", 25); //00025

e 或 e

科学型

?
1
console.write("{0:e}", 250000); //2.500000e+005

f 或 f

固定点

?
1
2
console.write("{0:f2}", 25); //25.00
console.write("{0:f0}", 25); //25

g 或 g

常规

?
1
console.write("{0:g}", 2.5); //2.5

n 或 n

数字

?
1
console.write("{0:n}", 2500000); //2,500,000.00

x 或 x

十六进制

?
1
2
console.write("{0:x}", 250); //fa
console.write("{0:x}", 0xffff); //ffff

/////////////////////////////////////////////////////////////////////////////////

c#格式化数值结果表

String.Format大全(C# Java)

strings

there really isn't any formatting within a strong, beyond it's alignment. alignment works for any argument being printed in a string.format call.

String.Format大全(C# Java)

numbers

basic number formatting specifiers:

String.Format大全(C# Java)

custom number formatting:

String.Format大全(C# Java)

dates

note that date formatting is especially dependant on the system's regional settings; the example strings here are from my local locale.

String.Format大全(C# Java)

custom date formatting:

String.Format大全(C# Java)

enumerations

String.Format大全(C# Java)

some useful examples

string.format("{0:$#,##0.00;($#,##0.00);zero}", value);

this will output "$1,240.00" if passed 1243.50. it will output the same format but in parentheses if the number is negative, and will output the string "zero" if the number is zero.

string.format("{0:(###) ###-####}", 18005551212);

this will output "(800) 555-1212".

变量.tostring()

字符型转换 转为字符串
12345.tostring("n"); //生成 12,345.00
12345.tostring("c"); //生成 ¥12,345.00
12345.tostring("e"); //生成 1.234500e+004
12345.tostring("f4"); //生成 12345.0000
12345.tostring("x"); //生成 3039 (16进制)
12345.tostring("p"); //生成 1,234,500.00%

java字符串格式化:string.format()方法的使用大全

字符型转换 转为字符串

12345.tostring("n"); //生成 12,345.00

12345.tostring("c"); //生成 ¥12,345.00

12345.tostring("e"); //生成 1.234500e+004

12345.tostring("f4"); //生成 12345.0000

12345.tostring("x"); //生成 3039 (16进制)

12345.tostring("p"); //生成 1,234,500.00%

java字符串格式化:string.format()方法的使用大全

字符串格式化,即按照你想要的字符串格式输出,如时间显示格式等,下面这个网站介绍的相当全面。

参考网站::

链接点击: string.format()方法的使用大全

实例:在android系统里面进行文件操作时,有时会使用当前时间,作为要保存数据的文件名,以便区别文件及日后对此文件进行操作。就如录像文件,当日保存下来的录像肯定会用当日的时间作为文件名称的一部分,方便以后查看。

如:

?
1
2
3
4
time t = new time();
t.settonow();
string filename = string.format("/record%04d%02d%02d%02d%02d%02d.avi",
   t.year, t.month+1 , t.monthday, t.hour, t.minute, t.second);

音视频项目中经常会用此文件命名方式。

延伸 · 阅读

精彩推荐
  • C#C#设计模式之Strategy策略模式解决007大破密码危机问题示例

    C#设计模式之Strategy策略模式解决007大破密码危机问题示例

    这篇文章主要介绍了C#设计模式之Strategy策略模式解决007大破密码危机问题,简单描述了策略模式的定义并结合加密解密算法实例分析了C#策略模式的具体使用...

    GhostRider10972022-01-21
  • C#VS2012 程序打包部署图文详解

    VS2012 程序打包部署图文详解

    VS2012虽然没有集成打包工具,但它为我们提供了下载的端口,需要我们手动安装一个插件InstallShield。网上有很多第三方的打包工具,但为什么偏要使用微软...

    张信秀7712021-12-15
  • C#SQLite在C#中的安装与操作技巧

    SQLite在C#中的安装与操作技巧

    SQLite,是一款轻型的数据库,用于本地的数据储存。其优点有很多,下面通过本文给大家介绍SQLite在C#中的安装与操作技巧,感兴趣的的朋友参考下吧...

    蓝曈魅11162022-01-20
  • C#如何使用C#将Tensorflow训练的.pb文件用在生产环境详解

    如何使用C#将Tensorflow训练的.pb文件用在生产环境详解

    这篇文章主要给大家介绍了关于如何使用C#将Tensorflow训练的.pb文件用在生产环境的相关资料,文中通过示例代码介绍的非常详细,需要的朋友可以参考借鉴...

    bbird201811792022-03-05
  • C#利用C#实现网络爬虫

    利用C#实现网络爬虫

    这篇文章主要介绍了利用C#实现网络爬虫,完整的介绍了C#实现网络爬虫详细过程,感兴趣的小伙伴们可以参考一下...

    C#教程网11852021-11-16
  • C#深入理解C#的数组

    深入理解C#的数组

    本篇文章主要介绍了C#的数组,数组是一种数据结构,详细的介绍了数组的声明和访问等,有兴趣的可以了解一下。...

    佳园9492021-12-10
  • C#三十分钟快速掌握C# 6.0知识点

    三十分钟快速掌握C# 6.0知识点

    这篇文章主要介绍了C# 6.0的相关知识点,文中介绍的非常详细,通过这篇文字可以让大家在三十分钟内快速的掌握C# 6.0,需要的朋友可以参考借鉴,下面来...

    雨夜潇湘8272021-12-28
  • C#C#微信公众号与订阅号接口开发示例代码

    C#微信公众号与订阅号接口开发示例代码

    这篇文章主要介绍了C#微信公众号与订阅号接口开发示例代码,结合实例形式简单分析了C#针对微信接口的调用与处理技巧,需要的朋友可以参考下...

    smartsmile20127762021-11-25