我最近想在Cocoa应用程序中使用正则表达式。但是我发现可可不包含正则表达式类。因此,我决定使用RegexKit(OgreKit很好,但是我不知道为什么它不能在OSX 10.6.4 x86_64上正常运行)。

我的文件内容如下:

12:20:30 - 01:20:30
some text
11:20:30 - 04:20:30
some text

And I want to pick up all time values and text values.I found this example code in a guide:

NSString *entireMatchString = NULL, *totalString = NULL, *dollarsString = NULL, *centsString = NULL;
NSString *regexString = @"owe:\\s*\\$?(?<total>(?<dollars>\\d+)\\.(?<cents>\\d+))";

[@"You owe: 1234.56 (tip not included)" getCapturesWithRegexAndReferences:regexString,@"$0", &entireString,@"${total}", &totalString,@"${dollars}", &dollarsString,@"${cents}",&centsString,nil];

// entireString  = @"owe: 1234.56";
// totalString   = @"1234.56";
// dollarsString = @"1234";
// centsString   = @"56";


所以我写了一个正则表达式字符串

NSString *regexString = @"\\s*\\n*(?<start>\\d\\d:\\d\\d:\\d\\d*)\\s*-\\s*(?<end>\\d\\d:\\d\\d:\\d\\d*)\\s*\\n*(?<text>.*)


而且效果很好,但只能使用一次。我需要像在Ogrekit中那样拾取所有命名的捕获,例如:

OGRegularExpression *regex = [OGRegularExpression regularExpressionWithString:@"<video src=\"(?<imageURL>.+)\".+>"
 options:OgreCaptureGroupOption
 syntax:OgreRubySyntax
 escapeCharacter:OgreBackslashCharacter];

NSArray *matches = [regex allMatchesInString:@"<video src=\"http://test.com/hello.jpg\">"];

if (matches != nil && ([matches count] == 1))
{
 OGRegularExpressionMatch *match = [matches objectAtIndex: 0];
 NSString *result = [match substringNamed:@"ImageURL"];
 // : http://test.com/hello.jpg
}


从matchs数组中查找所有命名的捕获值很容易。有人知道在RegexKit中怎么做吗?谢谢。

最佳答案

查看Enumerating all the Matches in a String by a Regular Expression下的文档。具体来说,您想了解RKEnumerator类。

关于objective-c - 如何枚举RegexKit中所有命名的捕获?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4133443/

10-09 16:27