RegexKitLite 匹配吗?

发布于 2024-12-02 01:37:18 字数 508 浏览 1 评论 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]"];

我想被替换的Str是“aaaa[video]ssss”但它是零 我错了吗?

i want to replace the string aaaa{\"type\":\"video\",\"title\":\"a\",manyothershere\"}ssss to
aaaa[video]ssss

this means the string {"type":"video","title":"a",balabala"} to [video]

i use RegexKitLite,i tried the code below ,but it doesn't work.

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

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

i suppose the replacedStr is "aaaa[video]ssss" but it's nil
am i wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撑一把青伞 2024-12-09 01:37:18

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

try NSString *videoRegexString = @"{\"type\":\"video\",.+?\"}"; (Note the question mark) the .+ may be consuming the \"}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文