gpt4 book ai didi

iphone - 如何解析 Objective-C 中 iframe 标签的 src 属性?

转载 作者:行者123 更新时间:2023-12-03 17:04:54 24 4
gpt4 key购买 nike

我有以下字符串:

<iframe width="1280" height="720" src="http://www.youtube.com/embed/Pb55ep-DrSo?wmode=opaque&autoplay=1&fs=1&feature=oembed&showinfo=0&autohide=1&controls=0" frameborder="0" allowfullscreen></iframe>

我想提取 src 属性,但不确定如何在 Objective-C 中解析它?

最佳答案

这很丑陋,但它有效:

NSString* str = @"<iframe width=\"1280\" height=\"720\" src=\"http://www.youtube.com/embed/Pb55ep-DrSo?wmode=opaque&autoplay=1&fs=1&feature=oembed&showinfo=0&autohide=1&controls=0\" frameborder=\"0\" allowfullscreen></iframe>";
str = [str substringFromIndex:[str rangeOfString:@"src=\""].location+[str rangeOfString:@"src=\""].length];
str = [str substringToIndex:[str rangeOfString:@"\""].location ];
NSLog(@"Str %@",str);

我测试了它,它输出:

2012-08-17 09:16:55.285 TEST[24413:c07] Str http://www.youtube.com/embed/Pb55ep-DrSo?wmode=opaque&autoplay=1&fs=1&feature=oembed&showinfo=0&autohide=1&controls=0

关于iphone - 如何解析 Objective-C 中 iframe 标签的 src 属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12000970/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com