XML特殊字符解析

发布于 2024-11-06 01:14:17 字数 219 浏览 0 评论 0原文

在我的 iPhone 应用程序中,我必须在一个大段落之间显示 UITextField。我从 XML 中获取该段落字符串。这里如何在本段的特定位置插入UITextField

这里这个 XML 中还包含一些特殊字符来查找插入 UITextField 的位置?那么如何解析中间的特殊字符并插入 UITextField 的 XML 呢?

In my iPhone app I have to display UITextField in-between in a large paragraph. Here I am getting this paragraph string is from a XML. Here how to insert UITextField in this paragraph in a particular position?

Here this XML in also contain some special characters to find the place where to insert the UITextField? So also how to parse the XML which as special characters in between and insert UITextField?

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

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

发布评论

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

评论(1

转瞬即逝 2024-11-13 01:14:17

为什么不在保存之前对 XML 进行编码,或者至少对要附加的数据进行编码,然后在解析时对其进行解码。

URL 编码参考

接收 XML 使用时:

CFURLCreateStringByReplacingPercentEscapes

  NSString* sItemNameDecorated = (NSString *) CFURLCreateStringByReplacingPercentEscapesUsingEncoding(kCFAllocatorDefault, (CFStringRef)@"UserName%26LastName", CFSTR(""), kCFStringEncodingUTF8);

这将输出:UserName&LastName


示例

<?xml version="1.0" encoding="UTF-8"?>
<Persons Name="UserName&LastName />

编码后:

<?xml version="1.0" encoding="UTF-8"?>
<Persons Name="UserName%26LastName />

Why don't you encode the XML before saving it or at least the data you are appending and decode it back on parsing.

URL Encoding Reference

On receiving the XML use:

CFURLCreateStringByReplacingPercentEscapes

  NSString* sItemNameDecorated = (NSString *) CFURLCreateStringByReplacingPercentEscapesUsingEncoding(kCFAllocatorDefault, (CFStringRef)@"UserName%26LastName", CFSTR(""), kCFStringEncodingUTF8);

This will output: UserName&LastName


Example

<?xml version="1.0" encoding="UTF-8"?>
<Persons Name="UserName&LastName />

after Encoding it:

<?xml version="1.0" encoding="UTF-8"?>
<Persons Name="UserName%26LastName />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文