Swift String去掉最后一个字符,endIndex

endIndex 不是只我们最后一个有效的字符,所以不要直接.endIndex

正确写法: jsonString.remove(at: jsonString.index(before: jsonString.endIndex))

Swift String去掉最后一个字符,endIndex_第1张图片

你可能感兴趣的:(swift,string)