迹忆客 专注技术分享

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

C# 将字符串转换为日期时间

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

在大多数情况下,我们以字符串形式获取日期,并且希望分别使用日,月和年。不用担心,在 C# 中,为了将字符串转换为 DateTime 对象,我们使用了一个名为 DateTime 的预定义类。

有几种在 C# 中将字符串转换为 DateTime 的方法,但是在这里,我们仅通过运行示例详细说明三种方法。这些方法是 Convert.ToDateTime()DateTime.Parse()DateTime.ParseExact()


C# 使用 Convert.ToDateTime() 将字符串转换为 DateTime

Convert.ToDateTime() 的正确语法是

Convert.ToDateTime(dateTobeConverted);
Convert.ToDateTime(dateTobeConverted, cultureInfo);

这里应该注意,如果你不提供区域性信息,那么默认情况下,编译器会将我们的日期字符串视为月/日/年。CultureInfoSystem.Globalization 命名空间中的一个 C# 类,有关特定的 CultureInfo

using System;

public class Conversion {
  public static void Main() {
    string CurrentDate = "06/04/2020";

    // Use of Convert.ToDateTime()
    DateTime DateObject = Convert.ToDateTime(CurrentDate);
    Console.WriteLine("The Date is: " + DateObject.Day + " " + DateObject.Month + " " +
                      DateObject.Year);
  }
}

输出:

The Date is: 4 6 2020

现在,我们将通过传递 CultureInfo 对象作为参数来实现它。

using System;
using System.Globalization;
public class Conversion {
  public static void Main() {
    string CurrentDate = "06/04/2020";

    // Creating new CultureInfo Object
    // You can use different cultures like French, Spanish etc.
    CultureInfo Culture = new CultureInfo("en-US");
    // Use of Convert.ToDateTime()
    DateTime DateObject = Convert.ToDateTime(CurrentDate, Culture);
    Console.WriteLine("The Date is: " + DateObject.Day + " " + DateObject.Month + " " +
                      DateObject.Year);
  }
}

输出:

The Date is: 4 6 2020

如果我们将 CultureInfo 更改为 nl-NL,则将交换月份和日期。

using System;
using System.Globalization;
public class Conversion {
  public static void Main() {
    string CurrentDate = "06/04/2020";
    CultureInfo Culture = new CultureInfo("nl-nl");

    DateTime DateObject = Convert.ToDateTime(CurrentDate, Culture);
    Console.WriteLine("The Date is: " + DateObject.Day + " " + DateObject.Month + " " +
                      DateObject.Year);
  }
}

输出:

The Date is: 6 4 2020

C# 使用 DateTime.Parse() 将字符串转换为 DateTime

DateTime.Parse() 的语法是,

DateTime.Parse(dateTobeConverted);
DateTime.Parse(dateTobeConverted, cultureInfo);

DateTime.Parse() 方法也是如此,如果我们不提供文化信息作为参数,那么默认情况下,我们的系统会将其视为月/日/年。

如果要转换的字符串的值为 null,则它将返回 ArgumentNullException,应使用 try-catch 模块进行处理。

using System;

public class Conversion {
  public static void Main() {
    string CurrentDate = "06/04/2020";

    // Use of DateTime.Parse()
    DateTime DateObject = DateTime.Parse(CurrentDate);
    Console.WriteLine("The Date is: " + DateObject.Day + " " + DateObject.Month + " " +
                      DateObject.Year);
  }
}

输出:

The Date is: 4 6 2020

C# 使用 DateTime.ParseExact()string 转换为 DateTime

DateTime.ParseExact() 的语法是,

DateTime.ParseExact(dateTobeConverted, dateFormat, cultureInfo);

DateTime.ParseExact() 是将字符串转换为 DateTime 的最佳方法。在此方法中,我们将日期的格式作为参数传递。这使用户易于准确执行转换。

在这里,我们通过传递 null 作为参数来代替文化信息,因为它是一个全新的主题,并且需要花费一些时间来理解。

using System;

public class Conversion {
  public static void Main() {
    string CurrentDate = "06/04/2020";

    // Use of DateTime.ParseExact()
    //  culture information is null here
    DateTime DateObject = DateTime.ParseExact(CurrentDate, "dd/MM/yyyy", null);
    Console.WriteLine("The Date is: " + DateObject.Day + " " + DateObject.Month + " " +
                      DateObject.Year);
  }
}

输出:

The Date is: 6 4 2020

结论

有许多方法可以在 C# 中将字符串转换为 DateTime。将字符串转换为 DateTime 的最佳方法是 DateTime.ParseExact()

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

本文地址:

相关文章

从 C# 中的字符串中删除字符

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

有 4 种主要方法可用于从 C# 中的字符串,string.Replace()函数,string.Join()和 string.Split()函数,Regex.Replace()函数以及 Linq 方法。

在 C# 中转义双引号

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

有两种主要方法可用于在 C# 中转义双引号。在 C# 中使用""转义符转义双引号

在 C# 中重复字符串 X 次

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

在 C# 中,可以使用三种主要方法将字符串重复 x 次:字符串类构造函数,StringBuilder 类和 LINQ 方法。用 C# 中的 string 类构造函数重复执行 X 次字符串

在 C# 中重复字符串

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

可使用三种主要方法在 C# 中重复字符串,String 构造函数,LINQ 中的 Enumerable.Repeat()函数以及 StringBuilder 类。

在 C# 中向数组中添加字符串

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

没有内置方法可以将新元素动态添加到 C# 中完全填充的数组中。使用 C# 中的 List.Add() 方法将字符串添加到数组

在 C# 中截断字符串

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

我们可以使用 C# 中的 String.Substring()方法创建一个字符串的截断副本。在 C# 中使用 String.Substring() 方法截断字符串

在 C# 中将字符串格式设置为货币格式

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

在 C# 中,可以使用两种主要方法将字符串格式化为货币格式,即 String.Format()和 ToString()函数。在 C# 中使用 String.Format() 方法将字符串格式化为货币

在 C# 中将字符串拆分为列表

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

我们可以使用 string.Split()函数和 C# 中的 Linq 的 ToList()函数,将可变的字符串转换为字符串列表。在 C# 中使用 String.Split() 方法将字符串变量拆分为字符串列表

在 C# 中检查一个字符串是否为空或 null

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

string.IsNullOrEmpty()方法用于检查字符串在 C# 中是否为 null 或 string.Empty 值。检查 C# 中的字符串是空或者 null 如果我们要检查其中包含 null 值或""值的字符串,可以在 C# 中使用 string.IsNullOrEmpty() 方

扫一扫阅读全部技术教程

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

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便