具有变量节点的SelectSingleNode语句

时间:2014-06-29 13:27:42

标签: c# xml

我有两种具有不同模式的XML文件类型

第一个架构:

<Document xmlns=\"urn:iso:std:iso:20022:tech:xsd:pain.001.001.03\">
    <CstmrCdtTrfInitn>
       <PmtInf>
          <DbtrAcct>
              <Id>11111111111111111</Id>
          </DbtrAcct>
       </PmtInf>
    </CstmrCdtTrfInitn>
</Document>

第二个架构:

<Document xmlns=\"urn:iso:std:iso:20022:tech:xsd:pain.001.001.02\">
   <CstmrCdtTrfInitn>
      <PmtInf>
          <DbtrAcct>
               <Id>11111111111111111</Id>
          </DbtrAcct>
      </PmtInf>
   </CstmrCdtTrfInitn>
</Document>

我尝试了以下代码,以便在两种类型的模式中获取节点id的值,所有文件xml存在于同一文件夹中,我做了一个循环来读取所有xml文件,下面的代码请不要有任何想法吗?

string xmlText = File.ReadAllText(file).Replace("<Document xmlns=\"urn:iso:std:iso:20022:tech:xsd:pain.001.001.03\">", "").Replace("<Document xmlns=\"urn:iso:std:iso:20022:tech:xsd:pain.001.001.02\">", "").Replace("</Document>", "").Replace("<CstmrCdtTrfInitn>", "").Replace("</CstmrCdtTrfInitn>", "").Replace("<pain.001.001.02>", "").Replace("</pain.001.001.02>", "");
var doc = new XmlDocument();
doc.LoadXml(xmlText);
string id= doc.SelectSingleNode("./PmtInf/DbtrAcct/Id")["id"].InnerText; ;
MessageBox.Show(id);

1 个答案:

答案 0 :(得分:3)

您不需要这些字符串操作。使用Linq to Xml

var id = (string)XDocument.Load(filename)
                          .Descendants()
                          .FirstOrDefault(d => d.Name.LocalName == "Id");

您也可以使用XPath

var id = (string)XDocument.Load(filename).XPathSelectElement("//*[local-name()='Id']");