gpt4 book ai didi

html - ios 中的正则表达式提取 href url 并丢弃 anchor 标记的其余部分?

转载 作者:太空狗 更新时间:2023-10-29 15:28:24 25 4
gpt4 key购买 nike

我想在 objective-c 中编写一个 url 提取函数。输入文本可以是任何内容,可以包含也可以不包含 html anchor 标记。

考虑一下:

NSString* input1 = @"This is cool site <a   href="https://abc.com/coolstuff"> Have fun exploring </a>";
NSString* input2 = @"This is cool site <a target="_blank" href="https://abc.com/coolstuff"> Must visit </a>";
NSString* input3 = @"This is cool site <a href="https://abc.com/coolstuff" target="_blank" > Try now </a>";

我想将字符串修改为 "This is cool site https://abc.com/coolstuff

忽略 anchor 标记之间的所有文本。并且需要考虑 anchor 标签中的_target等其他属性

我可以做类似的事情

static NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"<a\shref=\"(.*?)\">.*?</a>" options:NSRegularExpressionCaseInsensitive error:nil];;
NSString* modifiedString = [regex stringByReplacingMatchesInString:inputString options:0 range:NSMakeRange(0, [inputString length]) withTemplate:@"$1"];

在 input1 上工作正常,但在其他情况下失败。

谢谢

最佳答案

试试这个:

<a[^>]+href=\"(.*?)\"[^>]*>.*?</a>

关于html - ios 中的正则表达式提取 href url 并丢弃 anchor 标记的其余部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21763865/

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