How to concatenate string in Swift?
In Objective-C we do like
Objective-C
NSString *string = @\"Swift\"; NSString *resultStr = [string stringByAppen
You could use SwiftString (https://github.com/amayne/SwiftString) to do this.
"".join(["string1", "string2", "string3"]) // "string1string2string" " ".join(["hello", "world"]) // "hello world"
DISCLAIMER: I wrote this extension