gpt4 book ai didi

ios4 - 删除 NSString 的一部分

转载 作者:行者123 更新时间:2023-12-04 16:25:08 24 4
gpt4 key购买 nike

我有一个 NSString 如下:

<img alt="996453912" src="http://d2gg0uigdtw9zz.cloudfront.net/large/996453912.jpg" /><a href="http://www.dealcatcher.com/shop4tech-coupons">Shop4Tech Coupons</a>

我只需要第一部分(在 <a href 部分之前),我不知道如何删除第二部分。

我已经尝试了很多,但没有奏效。

最佳答案

使用类似的东西:

NSRange rangeOfSubstring = [string rangeOfString:@"<a href"];

if(rangeOfSubstring.location == NSNotFound)
{
// error condition — the text '<a href' wasn't in 'string'
}

// return only that portion of 'string' up to where '<a href' was found
return [string substringToIndex:rangeOfSubstring.location];

所以两个相关的方法是 substringToIndex:rangeOfString: .

关于ios4 - 删除 NSString 的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4423248/

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