如何确定字符串是希伯来日期还是公历日期?
我有一个包含希伯来日期或公历日期的字符串值。在 C# 中如何确定它是公历还是希伯来语?
I have a string value that contains or a Hebrew date, or a Gregorian date. How can I determine if it's Gregorian or Hebrew in C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
TryParse
方法DateTime
对象 - 如果希伯来文化失败,您可以尝试使用公历:You can use the
TryParse
method of theDateTime
object - if it failed with the Hebrew culture you can then try with the Gregorian calendar: