swift一个字符串分割并存为多个字符串
时间: 2024-01-01 13:03:32 浏览: 126
你可以使用 Swift 中的 split 函数来将一个字符串分割为多个字符串。例如:
```
let str = "Hello,World"
let array = str.split(separator: ",")
print(array) // ["Hello", "World"]
```
这个例子中,我们通过 `split` 函数将 `str` 字符串按照 `,` 分割成了两个字符串,分别存储到了 `array` 数组中。
阅读全文