gpt4 book ai didi

ios - 获取一串单词和空格中的第一个单词 - 空格前的子串第一个单词

转载 作者:IT王子 更新时间:2023-10-29 05:45:31 26 4
gpt4 key购买 nike

我有一个包含单词和空格的字符串,“2h 3m 1s”。我想从中提取2h;所以在第一个空格之前获取所有内容。

var date = "1,340d 1h 15m 52s"  // I want to extract "1,340d".

这样做的最佳做法是什么?什么子字符串函数是最好的方法?

最佳答案

如果您的字符串很重,componentsSeparatedByString() 往往会更快。

swift 2:

var date = "1,340d 1h 15m 52s"
if let first = date.componentsSeparatedByString(" ").first {
// Do something with the first component.
}

swift 3/4/5:

if let first = date.components(separatedBy: " ").first {
// Do something with the first component.
}

关于ios - 获取一串单词和空格中的第一个单词 - 空格前的子串第一个单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34333881/

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