迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 >

在 C# 中格式化日期时间

作者:迹忆客 最近更新:2024/01/16 浏览次数:

本教程将演示如何使用 ToString()String.Format 函数从 DateTime 变量创建格式化字符串。

日期格式说明符是 DateTime 变量中不同组件的字符串表示形式。你可以在 ToString()String.Format 函数中使用它们来指定你自己的自定义 DateTime 格式。

以下是一些常用的日期格式说明符。

样品日期:08/09/2021 下午 3:25:10

自定义日期时间格式说明符:

格式说明符 输出 日期时间部分
d 8
dd 08
M 9
MM 09
MMM Sep
MMMM September
yy 21
yyyy 2021
hh 03 小时
HH 15 小时
mm 25 分钟
ss 10
tt PM 时间

标准日期时间格式说明符:

说明符 DateTimeFormatInfo 属性 模式值
t ShortTimePattern h:mm tt
d ShortDatePattern M/d/yyyy
F FullDateTimePattern dddd, MMMM dd, yyyy h:mm:ss tt
M MonthDayPattern MMMM dd

有关 DateTime 格式说明符的更详细列表和更多示例,你可以查看以下 Microsoft 的官方文档:

  • 标准
  • 自定义

在 C# 中使用 ToString() 格式化日期时间

DateTime 格式化为字符串就像将 ToString() 应用于 DateTime 并提供你想要使用的格式一样简单。

DateTime.Now.ToString("ddMMyyyy") DateTime.Now.ToString("d")

例子:

using System;

namespace ConsoleApp1 {
  class Program {
    static void Main(string[] args) {
      // Initialize the datetime value
      DateTime date = new DateTime(2021, 12, 18, 16, 5, 7, 123);

      // Format the datetime value to a standard format (ShortDatePattern)
      string stanadard_fmt_date = date.ToString("d");

      // Format the datetime value to a custom format
      string custom_fmt_date = date.ToString("ddMMyyyy");

      // Print the datetime formatted in the different ways
      Console.WriteLine("Plain DateTime: " + date.ToString());
      Console.WriteLine("Standard DateTime Format: " + stanadard_fmt_date);
      Console.WriteLine("Custom DateTime Format: " + custom_fmt_date);
    }
  }
}

输出:

Plain DateTime: 18/12/2021 4:05:07 pm
Standard DateTime Format: 18/12/2021
Custom DateTime Format: 18122021

在 C# 中使用 String.Format() 格式化 DateTime

使用 String.Format 方法将 DateTime 格式化为字符串是通过在参数中提供格式和 DateTime 值来完成的。打印格式时,格式必须用括号括起来并以"0:"为前缀。

String.Format("{0:ddMMyyyy}", DateTime.Now) String.Format("{0:d}", DateTime.Now)

例子:

using System;

namespace ConsoleApp1 {
  class Program {
    static void Main(string[] args) {
      // Initialize the datetime value
      DateTime date = new DateTime(2021, 12, 18, 16, 5, 7, 123);

      // Format the datetime value to a standard format (ShortDatePattern)
      string stanadard_fmt_date = String.Format("{0:d}", date);

      // Format the datetime value to a custom format
      string custom_fmt_date = String.Format("{0:ddMMyyyy}", date);

      // Print the datetime formatted in the different ways
      Console.WriteLine("Plain DateTime: " + date.ToString());
      Console.WriteLine("Standard DateTime Format: " + stanadard_fmt_date);
      Console.WriteLine("Custom DateTime Format: " + custom_fmt_date);
    }
  }
}

输出:

Plain DateTime: 18/12/2021 4:05:07 pm
Standard DateTime Format: 18/12/2021
Custom DateTime Format: 18122021

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

在 C# 中按值对字典排序

发布时间:2024/01/19 浏览次数:153 分类:编程语言

有两种主要方法可用于按 C# 中的值对字典进行排序:list 方法和 Linq 方法。使用 C# 中的 List 方法按值对字典进行排序。C# 字典数据结构以 key:value 对的形式存储数据。

在 C# 中更新字典值

发布时间:2024/01/19 浏览次数:72 分类:编程语言

本教程演示如何使用键作为索引来更新 C# 字典中的值。dictionary 是一种集合类型,与只能通过索引或值本身访问值的数组或列表不同,字典使用键和值对来存储其数据。

在 C# 中检查字典键是否存在

发布时间:2024/01/19 浏览次数:142 分类:编程语言

本文教我们如何检查或检测 C# 中是否存在字典键。Dictionary 倾向于映射键和值。它包含特定值映射到的特定键。不允许有重复的键,这是字典的全部目标。

C# 中的字典与哈希表

发布时间:2024/01/19 浏览次数:166 分类:编程语言

本指南将讨论 C# 中 Dictionary 和 Hashtable 之间的区别。你应该更喜欢哪一个?本指南将讨论 C# 中 Dictionary 和 Hashtable 之间的区别。

C# 将对象转换为 JSON 字符串

发布时间:2024/01/19 浏览次数:157 分类:编程语言

本文介绍如何将 C# 对象转换为 C# 中的 JSON 字符串的不同方法。它介绍了 JavaScriptSerializer().Serialize(),JsonConvert.SerializeObject()和 JObject.FromObject()之类的方法。

C# 解析 JSON

发布时间:2024/01/19 浏览次数:106 分类:编程语言

本文介绍如何使用 C# 解析 JSON 的不同方法,比如 JsonConvert.DeserializeObject(),JObject.Parse()和 JavaScriptSerializer()之类的方法。

获取 C# 中 foreach 循环当前迭代的索引

发布时间:2024/01/19 浏览次数:88 分类:编程语言

本文介绍如何在 C# 中获取 foreach 循环当前迭代的索引。在 C# 中,我们主要有两个循环,for 循环和 foreach 循环。foreach 循环被认为是最好的,因为它适用于所有类型的操作。

C# 中的十进制文字

发布时间:2024/01/19 浏览次数:194 分类:编程语言

本教程解释了 C# 中的十进制文字以及如何使用它在 C# 中初始化变量时,你可能必须明确指定你希望它用于数值数据类型的数据类型。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便