To join two strings in Swift, you can use the +
operator or the compound assignment operator +=
. Here's an example:
main.swift263 chars11 lines
In the example above, we first declare two string variables firstName
and lastName
. Then, we use the +
operator to concat the two strings and assign the result to a new variable fullName
. We print the result to the console to verify the output.
Alternatively, we can use the +=
operator to concat a string to an existing variable. We first declare a variable greeting
and assign it the value "Hello, ". Then, we use the compound assignment operator +=
to append the fullName
variable to greeting
. Finally, we print the result to the console.
gistlibby LogSnag