Swift字串拼接 文字拼接

字串拼接

let helloString = "hello"
let worldString = "world"

1. 利用 +

String + String + String

print(helloString + "+" + worldString)
// -> hello+world

2. 利用 ” \()”

“\(String) String \(String)”
裡面也可以放其他的搭配
“\(Int) String \(Int)”

print("\(helloString)+\(worldString)")
// -> hello+world

Stirng format

String(format: “%@+%@”, String, String)
String(format: “%d+%d”, Int, Int)

print(String(format: "%@+%@", helloString, worldString))
// -> hello+world
Swift更多文章

[教學] Swift 找字串 文字找字串


Swift字串拼接 文字拼接
Swift 字串擷取 文字擷取
Swift – 陣列轉字串 | Array to String | List to String | description
Swift Date 現在星期幾 這個月有幾天
Swift – 正規表達式 (電話/身分證/email)


Categorized in: