将 JSON 日期转换为 MM/DD/YYYY 格式?
我的客户收到一个包含多列的电子表格,其中一列是“日期”。只有日期被格式化为 Date(1292291582263-0700)
(看起来是一个 JSON 日期)。
我需要在此电子表格代码 (VBA) 的其他位置转换并使用 MM/DD/YYYY 格式的 JSON 日期。
有谁知道如何解析此 JSON 日期格式并将其转换为 MM/DD/YYYY 格式?我已经阅读了很多关于 Javascript、C# 或 ASP.NET 等的解决方案,但我必须使用的只是该项目的 Excel 2010 和 VBA 代码。有没有办法达到我需要的可读格式?
My client receives a spreadsheet with a number of columns, one being a "date". Only the date turns out to be formatted as Date(1292291582263-0700)
(a JSON date it seems).
I need to convert and work with this JSON date in MM/DD/YYYY format, elsewhere in this spreadsheet's code (VBA).
Does anyone know how to parse and convert this JSON date format into a MM/DD/YYYY format? I have read lots of solutions on SO that are in Javascript, C#, or ASP.NET, etc but all I have to work with is Excel 2010 and VBA code for this project. Is there way to arrive at a readable format as I need?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
带有 +/- 偏移量的毫秒纪元时间?
Millisecond Epoch time with a +/- offset?
此函数处理 1971-01-01 之前的日期和一些溢出问题。
This function take care of date before 1971-01-01 and some problem with overflow.