博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
String escape/unescape into XML
阅读量:5956 次
发布时间:2019-06-19

本文共 530 字,大约阅读时间需要 1 分钟。

Is there any C# function which could be used to escape and un-escape a string, which could be used to fill in the content of an XML element?

And how to unescape?

 

【解决方案】

public static string XmlEscape(string unescaped)

{

XmlDocument doc = new XmlDocument();

XmlNode node = doc.CreateElement("root");

node.InnerText = unescaped;

return node.InnerXml;

}

 

public static string XmlUnescape(string escaped)

{

XmlDocument doc = new XmlDocument();

XmlNode node = doc.CreateElement("root");

node.InnerXml = escaped;

return node.InnerText;

}

转载地址:http://jsexx.baihongyu.com/

你可能感兴趣的文章
dedecms当没有缩略图会显示一个默认的图,不显示这个图的方法如下:
查看>>
HDU_1496 Equations && POJ_1840 Eqs(Hash)
查看>>
Sql Server 常用系统存储过程大全
查看>>
SQLServer DBA 三十问(第11~20题)
查看>>
学习DBCC CHECKIDENT
查看>>
理解 /etc/group 文件,关于i-node的形象比喻和正解
查看>>
Android 下载文件及写入SD卡
查看>>
SQL VIEW(视图)
查看>>
DotNet4应用程序打包工具->升级版【二】安装工具分析
查看>>
Eclipse里做JBPM工作流gpd.xml中文乱码问题解决(包括控制台乱码解决)
查看>>
Kill
查看>>
js的时间操作方法
查看>>
Java网络编程总结
查看>>
windows下 python的安装配置
查看>>
datatable创建一个主/从关系
查看>>
桥牌笔记:精准叫牌法摘要
查看>>
HDOJ 2000
查看>>
kNN最邻近规则分类
查看>>
带图傻瓜式自己动手修改新浪微博各种尾巴
查看>>
Hbase性能调优
查看>>