正则表达式模式匹配目标c

时间:2013-02-09 12:03:39

标签: ios objective-c regex nsregularexpression

我有以下字符串:

"abbot n. The superior of a community of monks." 

我将如何分开

"abbot" 

"n. The superior of a community of monks." 

有效?

我想使用的逻辑就像是将大字符串搜索到第一个空格然后根据该字符串拆分。

我在Objective-c中写这个。

是否有任何抽象可以让我更容易?

1 个答案:

答案 0 :(得分:0)

使用此模式将提供两个包含所需匹配项的组:

"(.+?)\s+(\w\.\s+.+?)"