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 Would you describe yourself as knowledgeable, but struggling when you have to come up with your own code? Fernando Olivares has a new book containing iOS rules you can immediately apply to your coding habits to see dramatic improvements, while also teaching applied programming fundamentals seen in refactored code from published apps.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.