Perl:给定年份和周数,我怎样才能获得该周的第一个日期?
使用优秀的 Perl DateTime 模块,获取日期的年份和周数很简单,但是走另一条路似乎有点困难。如何获取以年份和周数开头的日期?
Using the excellent Perl DateTime module it is trivial to obtain the year and week number for a date, but going the other way seems to be a bit more difficult. How does one go about obtaining a date starting with the year and week number?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是仅使用 DateTime 执行此操作的一种方法:
Here's one way to do it using only DateTime:
尝试:
Try: