Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Swift 2.0 Basics Swift Types String Manipulation

for interpolated greeting. I have assigned constant :: let name = "Colton" and let greeting = "\(Hi there), \(name)"

or interpolated greeting. I have assigned constant :: let name = "Colton" and let greeting = "(Hi there), (name)"----The code cannot be compiled.

What is wrong?

strings.swift
// Enter your code below
let name = "Colton"
let greeting = "\(Hi there), \(name)"
Leamsi Fontanez
Leamsi Fontanez
2,189 Points

I think the problem is you're treating 'Hi There' as a variable. Try: let greeting = "Hi there, \(name)" And see if it compiles.

1 Answer

Dennis O'Keeffe
Dennis O'Keeffe
32,820 Points

Leamsi is correct. Interpolation is only required for the variable you are including in the string!

From the Apple Documentation:

let multiplier = 3
let message = "\(multiplier) times 2.5 is \(Double(multiplier) * 2.5)"
// message is "3 times 2.5 is 7.5"