最佳答案
我有以下简单的代码写在Swift 3:
let str = "Hello, playground"
let index = str.index(of: ",")!
let newStr = str.substring(to: index)
在Xcode 9 beta 5中,我得到了以下警告:
'
substring(to:)
'已弃用:请使用带有'partial range from'操作符的String
切片下标。
如何在Swift 4中使用具有部分范围from的切片下标 ?