本文介绍了从字符串解析 XML的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个 xml 字符串:
I have a xml string:
<Test> Result : this is the result</Test>
我如何使用 XMLReader 类解析 XML 以将这就是结果"作为字符串返回.
How do i parse XML using XMLReader class to get "this is the result" as a string back.
谢谢!
推荐答案
var r = System.Xml.XmlReader.Create(new System.IO.StringReader("<Test> Result : this is the result</Test>"))
while (r.Read()) {
if (r.NodeType == XmlNodeType.Element && r.LocalName == "Test") {
Console.Write(r.ReadElementContentAsString());
}
}
这篇关于从字符串解析 XML的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!