0

我想将字符串 aaaa{\"type\":\"video\",\"title\":\"a\",manyothershere\"}ssss 替换为 aaaa[video]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]"];

我想replacedStr是“aaaa [video] ssss”,但我错了吗?

4

1 回答 1

0

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

于 2011-08-30T04:58:54.170 回答