I would like to format a string with another string like this:
var str = "Hello, playground"
print (String(format: "greetings %s", str))
This leads to this beautiful result:
greetings 哰૧
I tried with %@ and it works but, as I'm getting format string from another programming language, I would like, if possible to use the %s tag. Is there a way to ?