c#string.format的用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#string.format的用法相关的知识,希望对你有一定的参考价值。
参考技术A c#中string.format主要用来格式化输出的 比较常用的就是占位符 如楼上所解还有用的比较多的就是在格式化时间如: String.Format("0:yyyy年MM月dd日 HH:mm", “2011-05-11”); 参考技术B string类的Format()方法用来格式化字符串 string myString=string.Format("格式字符串(包括占位符0)",参数列表); 参考技术C 格式化输出:比如要输出中文的货币——¥100,000,00那么:class Programstatic void Main(string[] args)
Console.WriteLine(string.Format("0:C", 10000000)); string.Format用法诸多繁杂,具体可以参考(点击, http://www.ezloo.com/2008/11/string_format.html,参考)。
以上是关于c#string.format的用法的主要内容,如果未能解决你的问题,请参考以下文章