C#中的格式化字符串文字
要使用C#格式化字符串文字,请使用String.Format方法。
在以下示例中,0是对象的索引,该对象的字符串值在该特定位置插入-
using System;
namespace Demo {
class Test {
static void Main(string[] args) {
decimal A = 15.2 m;
string res = String.Format("Temperature = {0}°C.", A);
Console.WriteLine(res);
}
}
}在下面的示例中,让我们为双精度类型设置字符串格式。
示例
using System;
class Demo {
public static void Main(String[] args) {
Console.WriteLine("Three decimal places...");
Console.WriteLine( String.Format("{0:0.000}", 987.383));
Console.WriteLine( String.Format("{0:0.000}", 987.38));
Console.WriteLine(String.Format("{0:0.000}", 987.7899));
Console.WriteLine("Thousands Separator...");
Console.WriteLine(String.Format("{0:0,0.0}", 54567.46));
Console.WriteLine(String.Format("{0:0,0}", 54567.46));
}
}输出结果
Three decimal places... 987.383 987.380 987.790 Thousands Separator... 54,567.5 54,567
热门推荐
10 送心的祝福语简短
11 夏天客户祝福语大全 简短
13 生日贺卡祝福语简短创意
14 朋友聚会结束祝福语简短
15 中考祝福语 简短 签状
16 生日祝福语 简短独特情话
17 提前生日祝福语 简短
18 答谢生子祝福语简短独特