RegexKitLite匹配?

时间:2011-08-30 04:54:59

标签: iphone regexkitlite

我想替换字符串aaaa {\“type \”:\“video \”,\“title \”:\“a \”,很多其他人都在 AAAA [视频] SSSS

这意味着字符串{“type”:“video”,“title”:“a”,balabala“}到[video]

我使用RegexKitLite,我尝试了下面的代码,但它不起作用。

    NSString *videoRegexString = @"{\"type\":\"video\",.+\"}";

NSString *replacedStr = [@"aaaa{\"type\":\"video\",\"title\":\"sdf\",manyothershere\"}ssss" stringByReplacingOccurrencesOfRegex:videoRegexString withString:@"[video]"];

我认为被替换的Str是“aaaa [video] ssss”,但它没有 我错了吗?

1 个答案:

答案 0 :(得分:0)

尝试NSString *videoRegexString = @"{\"type\":\"video\",.+?\"}";(请注意问号).+可能正在使用\"}