致命错误:无法从空字符串形成字符

时间:2016-11-02 00:20:11

标签: swift string char fatal-error

所以我的功能可以去除拖尾"," (逗号+空格)在字符串的末尾,即使我确保字符串不为空,我也会收到上述错误。以下代码:

print("stripping trailing commas")
        for var detail in details {
            if detail.contains(",") {
print(detail)
                detail.remove(at: detail.endIndex)    // <-- Removes last space
                detail.remove(at: detail.endIndex)    // <-- Removes last comma
            }
        }

...结果以下控制台输出:

stripping trailing commas
2016, 
fatal error: Can't form a Character from an empty String

第一个实例detail.remove(at: detail.endIndex)正在被调试器突出显示,虽然我无法确定控制台消息中是否存在空格,但我添加&#34;,&# 34;在列表中每个条目的末尾,所以任何实际包含逗号的字符串不仅应该包含字符(如控制台所示),而且最后应该有两个字符需要被剥离。

提前致谢,感谢导致错误的原因以及如何解决?

2 个答案:

答案 0 :(得分:9)

尝试更改

detail.remove(at: detail.endIndex)

detail.remove(at: detail.index(before: detail.endIndex))

答案 1 :(得分:2)

不使用import Foundationcontains()所需)或计算索引的简单方法就是这样:

let details = ["one, two, three, ", "a, b", "once, twice, thrice, so nice, ", ""]

let filtered = details.map { (original: String) -> String in
  guard original.hasSuffix(", ") else { return original }
  return String(original.characters.dropLast(2))
}

print(filtered) // -> "["one, two, three", "a, b", "once, twice, thrice, so nice", ""]\n"

这不会删除返回数组中的任何空字符串。如果您需要该功能,可以轻松添加。