我有以下字符串:
"abbot n. The superior of a community of monks."
我怎么分开
"abbot"
和
"n. The superior of a community of monks."
有效地?
我想使用的逻辑类似于将大字符串搜索到第一个空格,然后根据它拆分单词。
我正在用objective-c写这个。
有什么抽象可以让我更容易吗?
我有以下字符串:
"abbot n. The superior of a community of monks."
我怎么分开
"abbot"
和
"n. The superior of a community of monks."
有效地?
我想使用的逻辑类似于将大字符串搜索到第一个空格,然后根据它拆分单词。
我正在用objective-c写这个。
有什么抽象可以让我更容易吗?