gpt4 book ai didi

c# - 在 C# 中的位置拆分字符串

转载 作者:太空狗 更新时间:2023-10-29 20:44:31 25 4
gpt4 key购买 nike

我有一个日期戳 (020920111422),我想将它拆分为

天 = 02,月 = 09,年 = 2011,小时 = 14,分钟 = 22

C#中有“在位置处拆分字符串”的方法吗?

最佳答案

你想要:

string x = s.Substring(0, i), y = s.Substring(i);

(或者可能是 i-1/i+1,具体取决于您的具体要求)。

但是,您也可以使用 DateTime.ParseExact 通过告诉它显式格式将其加载到 DateTime 中:

var when = DateTime.ParseExact("020920111422", "ddMMyyyyHHmm",
CultureInfo.InvariantCulture);

关于c# - 在 C# 中的位置拆分字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7386298/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com