gpt4 book ai didi

ios - 提取出子字符串但出现编译器错误

转载 作者:行者123 更新时间:2023-11-30 11:24:59 24 4
gpt4 key购买 nike

我有一个字符串“John+20”,我想提取出“John”,所以,我尝试根据this answer进行以下操作:

// data contains value "John+20"
static func getName(fromString data: String?) {
guard let myData = data else {
return
}

let idx = myData.index(of: "+")
//Compiler ERROR: Generic parameter 'Self' could not be inferred
let name = String(myData[..<idx])
}

但是我收到了代码注释中提到的错误,这是为什么?

我在我的 iOS 项目中使用 Swift 4.1。

最佳答案

我想索引也是可选的。尝试:

// data contains value "John+20"
static func getName(fromString data: String?) {
guard let myData = data else, let idx = myData.index(of: "+") {
return
}

let name = String(myData[..<idx])
}

关于ios - 提取出子字符串但出现编译器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50840922/

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