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 Basics Swift Types String Manipulation

John Gilmer
PLUS
John Gilmer
Courses Plus Student 3,782 Points

e

e

strings.swift
let name = "John"
let greeting = "Hi there, \(name)"
let finalGreeting = "\(greeting) How are you?" 
Jason Anders
Jason Anders
Treehouse Moderator 145,858 Points

Hi John Gilmer

Please fix the Title of your post and the description in the Body. "e" is just gibberish and not acceptable posting practice for the Treehouse Community. This kind of post makes the Community look unprofessional and confusing. Please fix the above ASAP.

Thank you for your cooperation.

Jason ~Treehouse Community Moderator

1 Answer

Jonathan Ruiz
Jonathan Ruiz
2,998 Points

Hey John, for the second part of this challenge you use string concatenation not string interpolation.

let phrase = "Hi there Elliot"

let concatenationExample = phrase + "How are you ?" 

hope this helps