gpt4 book ai didi

iOS - 从数组中获取第一个非空字符串元素

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

我有数组:

let array = ["", "Therapeutic Dentistry","Surgical Dentistry","Orthopedic Dentistry","Orthodontics","Genaral Medical Questions","Children Therapeutic Dentistry","Children Surgical Dentistry"]

我想要第一个,它是空的,我如何从数组中获取这个元素?

最佳答案

数组有一个 first 属性,如果它存在,它会为您提供第一个元素。

if let firstElement = array.first {
print(firstElement)
}

如果你想要第一个不是空字符串的元素,那么你可以使用first(where:)

if let firstElement = arr.first(where: { $0 != "" }) {
print(firstElement)
}

编辑:

问题的开头是“iOS 如何从数组 Swift 中获取第一个元素”,这就是为什么答案分为两部分的原因。

关于iOS - 从数组中获取第一个非空字符串元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51798741/

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