格式化DateTime字符串

发布于 2025-01-21 13:30:41 字数 445 浏览 0 评论 0原文

我有以下对象有时可以无效,

public string issued {get;set;}

发行字符串如下:2022/02/29 22:00:00 +00 +00:00

我想将发行变量分配给另一个变量为2022/02/29当它的变量不为null时。

这是我尝试的:

var item = new model() {
    issuedDate=issued.IsNullOrEmpty() ? "" : issued.ToString("yyyy/mm/dd")
}

但是它引发了一个错误:

不能从字符串转换为system.ibountarprovider?

我该如何解决?

i have the following object that can be nullable at times follows

public string issued {get;set;}

The issued string looks like this: 2022/02/29 22:00:00 +00:00

I want to assign the issued variable to another variable as 2022/02/29 when its not null.

This is what i tried:

var item = new model() {
    issuedDate=issued.IsNullOrEmpty() ? "" : issued.ToString("yyyy/mm/dd")
}

But it throws an error:

can not convert from string to system.IformatProvider?

How can I fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

倾其所爱 2025-01-28 13:30:41

我建议使用DateTime作为辅助> tryparseexact确定源是否有效dateTime格式。通过DateTime助手变量,您可以创建您需要的任何datetime格式的字符串。

string   issued = @"2022/02/29 22:00:00 +00:00";
string   issuedDate;
DateTime dateTimeIssued;

if (DateTime.TryParseExact(issued, "yyyy/MM/dd HH:mm:ss zzz", CultureInfo.InvariantCulture, DateTimeStyles.None, out dateTimeIssued)) {
  issuedDate = dateTimeIssued.ToString("yyyy/MM/dd");
}

请注意,TryParseexact仅在系统文化已知的格式时起作用。

I recommend using DateTime as helper with TryParseExact to determine if the source is a valid DateTime format. Via the DateTime helper variable you can then create any DateTime formatted strings you need to.

string   issued = @"2022/02/29 22:00:00 +00:00";
string   issuedDate;
DateTime dateTimeIssued;

if (DateTime.TryParseExact(issued, "yyyy/MM/dd HH:mm:ss zzz", CultureInfo.InvariantCulture, DateTimeStyles.None, out dateTimeIssued)) {
  issuedDate = dateTimeIssued.ToString("yyyy/MM/dd");
}

Be aware that TryParseExact only works if the format is known to the system culture.

夏花。依旧 2025-01-28 13:30:41

您可以尝试格式化;

 string.Format("{0:yyyy/MM/dd}",issued);

这将是返回 2022/02/29 为您返回

,您可以查看此页面,以获取有关DateTime格式的更多信息。

you can try for format;

 string.Format("{0:yyyy/MM/dd}",issued);

this will be return 2022/02/29 for you

and you can look this page, for more information on DateTime format.

https://www.csharp-examples.net/string-format-datetime/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文