string的各种各样的格式化

 using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication6
{
    class Program
    {
        //定义枚举类型
        enum Color { Yellow = 1, Blue, Green };
        //定义日期类型并获取当前的日期
        static DateTime thisDate = DateTime.Now;
        static void Main(string[] args)
        {
            // 声明字符串
            string s = "";
            Console.Clear();

        // 格式化各种数字
            Console.WriteLine("Standard Numeric Format Specifiers");
            s = String.Format(
                "(C) Currency: . . . . . . . . {0:C}/n" +
                "(D) Decimal:. . . . . . . . . {0:D}/n" +
                "(E) Scientific: . . . . . . . {1:E}/n" +
                "(F) Fixed point:. . . . . . . {1:F}/n" +
                "(G) General:. . . . . . . . . {0:G}/n" +
                "    (default):. . . . . . . . {0} (default = 'G')/n" +
                "(N) Number: . . . . . . . . . {0:N}/n" +
                "(P) Percent:. . . . . . . . . {1:P}/n" +
                "(R) Round-trip: . . . . . . . {1:R}/n" +
                "(X) Hexadecimal:. . . . . . . {0:X}/n",
                -123, -123.45f);
            Console.WriteLine(s);

        //格式化日期.
            Console.WriteLine("Standard DateTime Format Specifiers");
            s = String.Format(
                "(d) Short date: . . . . . . . {0:d}/n" +
                "(D) Long date:. . . . . . . . {0:D}/n" +
                "(t) Short time: . . . . . . . {0:t}/n" +
                "(T) Long time:. . . . . . . . {0:T}/n" +
                "(f) Full date/short time: . . {0:f}/n" +
                "(F) Full date/long time:. . . {0:F}/n" +
                "(g) General date/short time:. {0:g}/n" +
                "(G) General date/long time: . {0:G}/n" +
                "    (default):. . . . . . . . {0} (default = 'G')/n" +
                "(M) Month:. . . . . . . . . . {0:M}/n" +
                "(R) RFC1123:. . . . . . . . . {0:R}/n" +
                "(s) Sortable: . . . . . . . . {0:s}/n" +
                "(u) Universal sortable: . . . {0:u} (invariant)/n" +
                "(U) Universal sortable: . . . {0:U}/n" +
                "(Y) Year: . . . . . . . . . . {0:Y}/n",
                thisDate);
            Console.WriteLine(s);

        // 格式化枚举类型
            Console.WriteLine("Standard Enumeration Format Specifiers");
            s = String.Format(
                "(G) General:. . . . . . . . . {2:G}/n" +
                "    (default):. . . . . . . . {0} (default = 'G')/n" +
                "(F) Flags:. . . . . . . . . . {2:F} (flags or integer)/n" +
                "(D) Decimal number: . . . . . {0:D}/n" +
                "(X) Hexadecimal:. . . . . . . {1:X}/n",
                Color.Green,Color.Yellow,2);      
            Console.WriteLine(s);
            Console.ReadLine();

        }
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值