gpt4 book ai didi

ios - 将日期字符串转换为 Int Swift

转载 作者:搜寻专家 更新时间:2023-10-31 08:15:35 25 4
gpt4 key购买 nike

我正在尝试转换字符串:

let time = "7:30"

到整数:

let hour : Int = 7
let minutes : Int = 30

我目前正在循环遍历字符串:

for char in time.characters {
}

但我不知道如何将 char 转换为 int。任何帮助将不胜感激。

最佳答案

@alex_p 和@mixel 的回答是正确的,但也可以使用 Swift split 函数来实现:

let time = "7:30"
let components = time.characters.split { $0 == ":" } .map { (x) -> Int in return Int(String(x))! }

let hours = components[0]
let minutes = components[1]

关于ios - 将日期字符串转换为 Int Swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33202466/

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