You’ve seen how you can type values for strings directly into your code, but Swift also has a feature called string interpolation – the ability to place variables inside your strings to make them more useful.
You can place any type of variable inside your string – all you have to do is write a backslash, \
, followed by your variable name in parentheses. For example:
var score = 85
var str = "Your score was \(score)"
As you can see in the playground output, that sets the str
variable to be “Your score was 85”.
You can do this as many times as you need, making strings out of strings if you want:
var results = "The test results are here: \(str)"
As you’ll see later on, string interpolation isn’t just limited to placing variables – you can actually run code inside there.
SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until September 29th.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.