0

如何使用 SelectSingleNode 获取OverallResult 元素的内部文本?

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
    <ProcessResp xmlns="http://www.w3.org/2005/Atom">
        <Result>
            <OverallResult>Success</OverallResult>
4

1 回答 1

0
var doc = new XmlDocument();
doc.LoadXml(xml);
var text = doc.SelectSingleNode("Example/Node/text()").InnerText; // or .Value

返回

"Some text here\r\n    "

和 text.Trim() 返回

"Some text here"

请通过以下链接获取与 XML 相关的查询,这对初学者非常有用!

http://www.dotnetcurry.com/ShowArticle.aspx?ID=564

为您的答案(我没有尝试过,尽管尝试在您的代码中进行这样的更改)

doc.SelectSingleNode("soap/ProcessResp/ Result/OverallResult/text()").InnerText; 
于 2013-10-08T11:15:27.423 回答