How to concatenate string in Swift?
In Objective-C we do like
Objective-C
NSString *string = @\"Swift\"; NSString *resultStr = [string stringByAppen
I just switched from Objective-C to Swift (4), and I find that I often use:
let allWords = String(format:"%@ %@ %@",message.body!, message.subject!, message.senderName!)