gpt4 book ai didi

arrays - 检查字符串是否是当前日期

转载 作者:行者123 更新时间:2023-11-30 12:38:58 27 4
gpt4 key购买 nike

我是 swift 新手,我想将一个字符串分成一个数组。在我的例子中,字符串是“20170227”,我希望将它放在像 [2017,02,27] 这样的数组中。我尝试过这样做,但代码太长,而且我认为到目前为止还太复杂。

 var date = "20170227"
var Space: Character = " "
let indexMain = date.index(date.startIndex, offsetBy: 4)
date.insert(Space, at: indexMain)

最终只返回 2017 0227,所以我迷路了......提前致谢!

最佳答案

根据您的评论,如果您想检查字符串的日期是否为当前日期,则可以使用 DateFormatter 将字符串转换为日期,然后使用 isDateInToday 检查日期是今天的日期。

var dateString = "20170227"
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyyMMdd"
if let date = dateFormatter.date(from: dateString), Calendar.current.isDateInToday(date) {
print("String date is today's date")
}

关于arrays - 检查字符串是否是当前日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42490978/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com