NSXmlParserfoundCharacters方法不是一次性读取单词吗?

发布于 2024-11-10 14:26:45 字数 116 浏览 0 评论 0原文

当字符带有特殊字符(例如 København,这是一个丹麦语单词)时,NSXmlParserfoundCharacters 方法不会一次性读取字符串???

它将它从 ø 中分离出来并单独读取......

NSXmlParser foundCharacters method is not reading string in one time when characters coming with special characters like København which is a danish word???

It breaks it from ø and read it separately...

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

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

发布评论

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

评论(1

離人涙 2024-11-17 14:26:45

你有什么问题?这是有记录的行为:

解析器对象可以向委托发送多个 parser:foundCharacters: 消息来报告元素的字符。由于字符串可能只是当前元素总字符内容的一部分,因此您应该将其追加到当前的字符累积中,直到元素发生变化。

如果您希望捕获标签的全部文本内容,则必须捕获所有这些消息并将内容连接到字符串中。

What's your question? This is documented behavior:

The parser object may send the delegate several parser:foundCharacters: messages to report the characters of an element. Because string may be only part of the total character content for the current element, you should append it to the current accumulation of characters until the element changes.

If you wish to capture the entire textual contents of a tag, you'll have to catch all these messages and join the contents in a string.

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