是否有任何内置解决方案允许以 do 的方式替换字符串NSExpression
(即提供绑定字典)?
所以而不是:
let s = String(format: "%@ %@", arguments: ["foo", "bar"]) // "foo bar"
我们有:
let s = String(format: "$foo $bar", ["foo": "hello", "bar": "world"]) // hello world
PS 我知道replaceOccurrences
,我需要 NSExpression 样式替换。谢谢!