我正在尝试使用 NSRegularExpression 从音频流中提取 ICECAST 数据,但我认为我的模式存在一般问题。
这是我的代码:
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"StreamTitle='(.*)';"
options:NSRegularExpressionCaseInsensitive
error:nil];
NSMutableString *messageAsText = [NSMutableString stringWithUTF8String:[messageAsRawData bytes]];
NSTextCheckingResult *match = [regex firstMatchInString:messageAsText
options:0
range:NSMakeRange(0, [messageAsText length])];
NSString *message = [messageAsText substringWithRange:[match rangeAtIndex:1]];
NSLog(@"Input: '%@', Output: '%@'", messageAsText, message);
说输入是:
StreamTitle='Thomas Newman - Awkward Talk [The Horse Whisperer]';StreamUrl='';
我希望得到这个:
Thomas Newman - Awkward Talk [The Horse Whisperer]
但我明白了:
Thomas Newman - Awkward Talk [The Horse Whisperer]';StreamUrl='
这与 NSRegularExpression 无关,因为如果在这里测试,正则表达式会显示相同的结果: http ://regex.larsolavtorvik.com/
有人能指出我正确的正则表达式吗?