XML特殊字符解析
在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不在保存之前对 XML 进行编码,或者至少对要附加的数据进行编码,然后在解析时对其进行解码。
URL 编码参考
接收 XML 使用时:
CFURLCreateStringByReplacingPercentEscapes
这将输出:UserName&LastName
示例
编码后:
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
This will output: UserName&LastName
Example
after Encoding it: