Skip to main content

String interpolation can now include string literals

Less than 1 minuteSwiftArticle(s)bloghackingwithswift.comswiftswift-2.1

String interpolation can now include string literals 관련

HACKING WITH SWIFT

What's new in Swift?

String interpolation can now include string literals | Changes in Swift 2.1

String interpolation can now include string literals

Available from Swift 2.1

Using quote marks inside strings caused problems before Swift 2.1, which meant that using string literals inside string interpolation was also difficult. This has been fixed in Swift 2.1, so this kind of code works fine now:

print("Hello, \(username ?? "Anonymous")")

This means it's also possible to read dictionary keys using string interpolation, like this:

print("Hello, \(user["name"]!)")

이찬희 (MarkiiimarK)
Never Stop Learning.