How to concatenate string in Swift?
In Objective-C we do like
Objective-C
NSString *string = @\"Swift\"; NSString *resultStr = [string stringByAppen
To print the combined string using
Println("\(string1)\(string2)")
or String3 stores the output of combination of 2 strings
let strin3 = "\(string1)\(string2)"