gpt4 book ai didi

ios - 删除除最后一个以外的所有事件

转载 作者:行者123 更新时间:2023-11-28 09:33:55 26 4
gpt4 key购买 nike

我想删除所有出现的 char == 。在除最后一个以外的字符串中。

例如:

1.2.3.4

应该变成:

123.4

最佳答案

  • 找到最后一个点的位置。
  • 删除该位置之前的所有点。

例子:

var str = "1.2.3.4"
if let idx = str.range(of: ".", options: .backwards) {
str = str.replacingOccurrences(of: ".", with: "", range: str.startIndex..<idx.lowerBound)
}
print(str) // 123.4

关于ios - 删除除最后一个以外的所有事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44804054/

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