Swift 字串切割 🔥忍術: 字串分離之術🔥

字串切割簡介

什麼是字串切割? 不管是Swift或是其他程式語言都有這功能,用來切割字串,並且將切割結果放入Array中
舉例你有個String為(種類:水果),你需要水果這時候就需要使用符號切割,利用符號切割字串將字串一分為二並且儲存至陣列中
可說是Swift必學常用技能

1. Swift字串切割術: components

let yourString = "西瓜,奇異果,蘋果,香蕉"
let components = yourString.components(separatedBy: ",")
print(components)

Swift字串切割術: components

2. Swift字串切割術: split

let yourString = "西瓜,奇異果,蘋果,香蕉"
let split = yourString.split(separator: ",")
print(split)

Swift字串切割術: split

Swift更多文章

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


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

參考文件
In Swift, can you split a string by another string, not just a character?
How to split a string in Swift

Swift更多文章

Swift 彈出視窗 AlertController 的使用方法 💥

Swift 判斷螢幕方向 📱

Swift Core Data 實現 💾🔥

Swift UISegmentedControl 💻分段控制器!

Swift 實現抽屜效果 🧹


Categorized in:

Tagged in:

,