当前位置:网站首页>读取excel,int 数字时间转时间

读取excel,int 数字时间转时间

2022-04-23 17:57:00 用户昵称不能为空

golang解析excel的时候,会发现日期时间都变成了 数字,但在excel中显示是正常的。

原因

excel中的日期按照他自有的纪元存储。以 1899年12月30日0时0分0秒UTC为纪元。

解决办法

转换

func ExcelIntDate(dateStr string) (dt time.Time, err error) {
    
	var dateValue float64
	matched, err := regexp.MatchString(`^\d+$`, dateStr)
	if err != nil {
    
		return
	}

	if !matched {
    
		err = errors.New("not excel time")
		return
	}

	dateValue, err = strconv.ParseFloat(dateStr, 64)
	if err != nil {
    
		return
	}
	epoch := time.Date(1899, 12, 30, 0, 0, 0, 0, time.UTC) // UTC 1899/12/30 00:00:00
	dt = epoch.Add(time.Duration(dateValue) * 24 * time.Hour)
	return
}

测试

	var dateStr string
	dateStr = "44666" // 2022-04-15 00:00:00 +0000 UTC
	dateStr = "44621" // 2022-03-01 00:00:00 +0000 UTC
	fmt.Println(ExcelIntDate(dateStr))

版权声明
本文为[用户昵称不能为空]所创,转载请带上原文链接,感谢
https://blog.csdn.net/default7/article/details/124319907