假设我有这个:
NSString *str = @"This is a sample string";
如何以将每个单词添加到 NSMutableArray 中的方式拆分字符串?
在 VB.net 中,您可以这样做:
Dim str As String
Dim strArr() As String
Dim count As Integer
str = "vb.net split test"
strArr = str.Split(" ")
For count = 0 To strArr.Length - 1
MsgBox(strArr(count))
Next
那么如何在 Objective-C 中做到这一点呢?谢谢