private String result = String.format("$1#%1$s","myString")
如何在Swift 4中获得相同的结果?
答案 0 :(得分:0)
您应该使用String(format:_:)
并使用%@
作为参考,而不是%1$s
。
let myString = "test"
let result = String(format: "$1#%@", myString) //$1#test
详细了解字符串格式说明符 in the Cocoa documentation。