如何(尝试)将单个字符串解析为“DD/MM/YYYY”中的日期时间格式? (VB.Net)
如何(尝试)将单个字符串解析为“DD/MM/YYYY”格式的日期时间? (VB.Net)
例如:我使用输入字符串“30/12/1999”(1999 年 12 月 30 日),如何(尝试)将其解析为 DateTime?
How to (try)parse a single String to DateTime in "DD/MM/YYYY" format? (VB.Net)
For example: I use input string "30/12/1999" (30 December 1999), how to (try)parse it to DateTime?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
如果
yourString
与您指定的格式不匹配,这将引发异常。如果您不希望在这种情况下出现异常,请执行以下操作:Try this:
This will throw an exception if
yourString
does not match the format you specify. If you do not want an exception in this case then do this: