gpt4 book ai didi

ios - 从 NSString 中删除所有匹配项

转载 作者:行者123 更新时间:2023-12-01 17:53:59 25 4
gpt4 key购买 nike

我有一个 HTML 格式的 NSSTring,我需要删除所有开始和结束 strong标签

我将如何遍历字符串并删除所有 <strong></strong>

最佳答案

尝试使用stringByReplacingOccurrencesOfString:withString:NSString的方法

NSString *newString = nil;
NSString *resultString = nil;
newString = [htmlString stringByReplacingOccurrencesOfString:@"<strong>" withString:@""];
resultString = [newString stringByReplacingOccurrencesOfString:@"</strong>" withString:@""];

以上代码假定要删除的 html 标记中没有空格,其中 resultString 表示最终结果。

关于ios - 从 NSString 中删除所有匹配项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21656007/

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