swift 按字符串将字符串拆分为数组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 按字符串将字符串拆分为数组相关的知识,希望对你有一定的参考价值。

extension String {
    func split(length: Int) -> [String] {
        return stride(from: 0, to: count, by: length).map({ i -> String in
            let start = index(startIndex, offsetBy: i)
            let end = index(start, offsetBy: length, limitedBy: endIndex) ?? endIndex
            return String(self[start..<end])
        })
    }
}

以上是关于swift 按字符串将字符串拆分为数组的主要内容,如果未能解决你的问题,请参考以下文章

按句点将字符串拆分为字符串 [] 但返回一个空数组

如何在PHP中按字符将数组拆分为关联数组[重复]

在 Swift 中将字符串拆分为数组?

Swift - 将字符串拆分成数组(把一个字符串分割成字符串数组)

Java:将按字符串长度排序的字符串数组按字符串长度拆分为多个数组

按字符拆分字符串