EXCEL导入日期变为数字

EXCEL导入日期变为数字EXCEL导入日期变为数字

EXCEL导入日期变为数字 

EXCEL导入日期变为数字 

  private static string ToDateTimeValue(string warehouseTime)
        {
            if (!string.IsNullOrWhiteSpace(warehouseTime))
            {
                Decimal tempValue;
                if (Decimal.TryParse(warehouseTime, out tempValue))
                {
                    int day = Convert.ToInt32(Math.Truncate(tempValue));
                    DateTime dt = new DateTime(1900, 1, 1).AddDays(day < 32 ? (day - 1) : (day - 2));
                    return dt.ToString("yyyy-MM-dd");
                }
                else
                {
                    return warehouseTime;
                }
            }
            return string.Empty;
        } 

 

上一篇:python之时间模块


下一篇:Python 处理日期与时间的全面总结