Objective-C - 使用 NSScanner 读取字符串?

发布于 2024-12-17 09:24:27 字数 233 浏览 1 评论 0原文

所以我正在尝试读取 html 字符串的内容。

[scanner scanUpToString:@"<" intoString:&result];

将内容读入字符串但忽略最后一个字符(在本例中为“<”)的最快方法是什么。我不想执行 stringByReplacingOccuranceOfString,这会执行缓慢

SO I am trying to read content of an html string.

[scanner scanUpToString:@"<" intoString:&result];

What is the fastest way to read the content into string but ignore the last character which in this case is "<". I don't want to do stringByReplacingOccuranceOfString, that would perform slow

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

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

发布评论

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

评论(1

沦落红尘 2024-12-24 09:24:27

NSScanner 的

-scanUpToString:(NSString *)stopString intoString:(NSString *)result

结果中不包含 stopString;您不需要忽略最后一个字符,因为它不包括在内。

NSScanner's

-scanUpToString:(NSString *)stopString intoString:(NSString *)result

does not include the stopString in the result; you don't need to ignore the last character, because it's not included.

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