-5
A
回答
2
@rahul你需要不斷的佈局格式字符串像你想解析,看看代碼字符串:
package main
import (
"time"
"fmt"
)
func main() {
time, err := time.Parse("Jan 2006", "Feb 2020")
if err != nil {
panic(err)
}
fmt.Println(time)
}
佈局格式,你可以找到here
相關問題
- 1. 轉換字符串到日期在PHP中的「年月日」
- 2. 轉換日期字符串到年月日
- 3. 轉換年周字符串到日期
- 4. 將字符串轉換爲日期(0512應轉換爲2012年5月)
- 5. 轉換日期(年月日)到天數
- 6. 年轉換成字符串日期
- 7. Golang:將time.Time轉換爲字符串
- 8. 將python中的字符串日期轉換爲python中的日月年
- 9. 將特定字符串(0716_F_Frndy)轉換爲日期(2016年7月1日)
- 10. 如何將日期字符串轉換爲格式「2010年11月17日」
- 11. 將日期轉換爲年和月
- 12. 轉換日期 - 「0713」到「2013年7月」
- 13. Java日期輸入日期爲字符串的轉換問題2014年10月
- 14. 將字符串轉換爲日期並將日期轉換回字符串
- 15. 無法將月份年份字符串轉換爲R中的日期
- 16. 將字符串轉換爲日期時間爲年份和月份SQL
- 17. 將字符串日期轉換爲顯示2年數字
- 18. 如何字符串日期2015年2月12日轉換爲2015年12月2日在java中
- 19. 將Unix紀元作爲字符串轉換爲time.Time轉到
- 20. 如何將日期轉換爲年,月,日日期格式
- 21. 格式[MonthName] [日期] [年]字符串日期轉換
- 22. 字符串到日期時間的轉換 - 指定在日期和月份日期的年份
- 23. 轉換PHP日期字符串「月」日期格式爲大寫
- 24. 2010年4月5日,字符串必須在Java中轉換爲日期
- 25. 轉換字符串「22/08/2013」爲日期格式2013年8月22日
- 26. 將毫秒轉換字符串到日期字符串
- 27. 將年份字符串即'2005'轉換爲日期時間值
- 28. 將月份字符串轉換爲日期
- 29. 將字符串轉換成日期時每月在信
- 30. 的Javascript:全月將字符串轉換爲日期對象
也許這些人會幫助? https://stackoverflow.com/questions/25845172/parsing-date-string-in-golang,https://stackoverflow.com/questions/40388246/convert-string-to-time-and-parse-in-golang –
我得到thi errro解析時間「2020年1月」爲「2006-01-02T15:04:05Z07:00」:can not parse「Jan 2020」as「2006」 0001-01-01 00:00:00 +0000 UTC – rahul
你的代碼在哪裏? – Flimzy