2
爲什麼它不適用於Swift 3?如何轉換它?Swift 3 - inout字符串不能轉換爲字符串
var valorTemp: String = "44,52"
valorTemp = valorTemp.substring(with: Range<String.Index>(valorTemp.startIndex...valorTemp.characters.index(valorTemp.endIndex, offsetBy: -2)))
當我改變...到... <它工作正常,但我不認爲其結果可能是一樣的
var valorTemp: String = "44,52"
valorTemp = valorTemp.substring(with: Range<String.Index>(valorTemp.startIndex..<valorTemp.characters.index(valorTemp.endIndex, offsetBy: -2)))
謝謝!
PS:第一個代碼在Xcode 8中顯示錯誤「inout String不能轉換爲字符串」 –