字符串未被识别为有效的日期时间

发布于 2024-12-06 23:14:02 字数 813 浏览 0 评论 0原文

我试图根据从 Facebook 捕获的用户信息来解析准确的日期。我收到错误消息:字符串未被识别为有效的日期时间。

这是解析 dd/MM/yyyy 格式的日期的最佳方法

h.AddUser(r.id, r.FBid, accessToken, r.first_name, r.last_name, DateTime.ParseExact(r.birthday, "dd-MM-yyyy", System.Globalization.CultureInfo.InvariantCulture), r.email, DateTime.Now, r.gender, "http://graph.facebook.com/" + r.id + "/picture?type=large"); 

更新: >

如果 r.birthday 位于 dd/MM/yyyy 那么

DateTime.ParseExact(r.birthday, "dd/MM/yyyy", new System.Globalization.CultureInfo("en-GB"));

如果 r.birthday 位于 MM/dd/yyyy 那么

DateTime.ParseExact(r.birthday, "dd/MM/yyyy", new System.Globalization.CultureInfo("en-GB"));

我找到了解决我的问题的方法,将其发布,以便其他人遇到相同问题时可以找到相同的解决方案 我

im trying to parse exact a date based on the capture of information of a user from facebook. I get the error message: String was not recognized as a valid DateTime.

which is the best way to parse a date in the format dd/MM/yyyy

h.AddUser(r.id, r.FBid, accessToken, r.first_name, r.last_name, DateTime.ParseExact(r.birthday, "dd-MM-yyyy", System.Globalization.CultureInfo.InvariantCulture), r.email, DateTime.Now, r.gender, "http://graph.facebook.com/" + r.id + "/picture?type=large"); 

UPDATE:

if r.birthday is in dd/MM/yyyy then

DateTime.ParseExact(r.birthday, "dd/MM/yyyy", new System.Globalization.CultureInfo("en-GB"));

if r.birthday is in MM/dd/yyyy then

DateTime.ParseExact(r.birthday, "dd/MM/yyyy", new System.Globalization.CultureInfo("en-GB"));

i found a solution to my problem, posting it so if others are experiencing the same problem can find the same solution as me

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

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

发布评论

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

评论(1

傲影 2024-12-13 23:14:02

那么要解析的字符串是 dd/MM/yyyy 格式吗?

然后将该格式指定给 parseExact 方法


DateTime.ParseExact(r.birthday, "dd/MM/yyyy", System.Globalization.CultureInfo.InvariantCulture)

So the string to be parsed is in dd/MM/yyyy format ?

Then specify that format to the parseExact method as such


DateTime.ParseExact(r.birthday, "dd/MM/yyyy", System.Globalization.CultureInfo.InvariantCulture)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文