gpt4 book ai didi

swift - 如何在 Swift 中将字符串转换为 Int?

转载 作者:搜寻专家 更新时间:2023-11-01 06:15:00 24 4
gpt4 key购买 nike

我正在尝试获取 var num 的子字符串,但我需要该子字符串是 Int 我该怎么做?

这是我的代码

func sbs_inicio(num: String, index: Int) -> Int{
let dato: Int = num.index(num.startIndex, offsetBy: index)
return dato
}

var num = "20932121133222"
var value = sbs_inicio(num: num, index: 2)
print(value) //value should be 20

最佳答案

在字符数组上使用prefix函数

let startString = "20932121133222"
let prefix = String(startString.characters.prefix(2))
let num = Int(prefix)

Prefix 允许您从数组的开头获取前 n 个元素,因此您获取这些元素,将它们转换回 String,然后转换生成的 String到一个 Int

关于swift - 如何在 Swift 中将字符串转换为 Int?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47226356/

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