如何使用 NSXMLParser 解析包含&符号的字符串?

发布于 2024-12-11 02:02:21 字数 370 浏览 1 评论 0原文

输入字符串是

<path>a &amp; b</path>

,我的 Objective C 解析器代码是

- (void) parser:(NSXMLParser *)parser
foundCharacters:(NSString *)string {
    ...
    if(parserState==EXPECT_PATH) {
        NSLog(@"got %@", string);
    }
    ...
}

这会打印 got a 而不是 got a &amp; b

The input string is

<path>a & b</path>

and my Objective C parser code is

- (void) parser:(NSXMLParser *)parser
foundCharacters:(NSString *)string {
    ...
    if(parserState==EXPECT_PATH) {
        NSLog(@"got %@", string);
    }
    ...
}

This prints got a instead of got a & b

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

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

发布评论

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

评论(1

Bonjour°[大白 2024-12-18 02:02:22

parser:foundCharacters: 可以针对一个元素的内容多次调用。您有责任将该方法的多次运行中的所有字符附加到一个字符串中。

因此,除非您可以确认在第一次运行后不会再次调用 parser:foundCharacters:,否则这是预期的行为。

parser:foundCharacters: can be called multiple times for one element's contents. It is your responsibility to append all characters from multiple runs of the method to one string.

So unless you can confirm that parser:foundCharacters: doesn't get called again right after the first run, this is expected behavior.

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