CSV中的DateTime列以Excel格式打开,仅用于计时

suzh9iv8  于 2023-02-06  发布在  其他
关注(0)|答案(1)|浏览(108)

这件事已经让我发疯有一段时间了。
如果我有一个包含以下数据的CSV文件:

time,isBot,userAgent
07/12/2019 11:27:25.339,true,facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)
07/12/2019 11:27:24.471,true,facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)
07/12/2019 11:07:12.161,true,Mozilla/5.0 (compatible; SemrushBot/3~bl; +http://www.semrush.com/bot.html)

格式设置为...

time     isBot    userAgent
27:25.3  TRUE     facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)
27:24.4  TRUE     facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)
7:12.1   TRUE     Mozilla/5.0 (compatible; SemrushBot/3~bl; +http://www.semrush.com/bot.html)

有什么办法可以改变这种默认行为吗?这已经让我沮丧了一段时间。
更新1:我检查了数据文件,从时间列中删除了毫秒。

time,isBot,userAgent
07/12/2019 11:27:25,true,facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)
07/12/2019 11:27:24,true,facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)
07/12/2019 11:07:12,true,Mozilla/5.0 (compatible; SemrushBot/3~bl; +http://www.semrush.com/bot.html)

这和我预期的一样。

time                     isBot    userAgent
7/12/2019 11:27:25.339   TRUE     facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)
7/12/2019 11:27:24.471   TRUE     facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)
7/12/2019 11:07:12.161   TRUE     Mozilla/5.0 (compatible; SemrushBot/3~bl; +http://www.semrush.com/bot.html)

这给了我想要的格式,但牺牲了捕获毫秒的精度。

58wvjzkj

58wvjzkj1#

我也面临的CSV,但当我只是双击到Excel列显示我所需的格式。这意味着它不是由于任何数据丢失

相关问题