4

我有一个如下的 XML 文件:

<Main>
    <Element1 Property1="Hello" Property3="world">
        <Element1.Property2>again</Element1.Property2>
        <Element1.Property3>Dave</Element1.Property3>
    </Element1>
    <Element2 Property1="Hello" Property3="world">
        <Element2.Property2>again</Element2.Property2>
        <Element2.Property1>
            <SpecialElementForSayingHi/>
        </Element2.Property1>
    </Element2>
</Main>

我需要使用 XPath 匹配以下元素 - 除非有办法使用模式禁止它们存在,但我不相信有:

<Element1.Property3>Dave</Element1.Property3>
...
<Element2.Property1>
    <SpecialElementForSayingHi/>
</Element2.Property1>

具体来说,我需要匹配元素名称采用以下格式的所有元素:

ParentElementName.NameOfAttributeThatExistsOnTheParentElement

我在 .Net 中工作,不想为此使用外部库,所以如果可以使用 XPath 1.0 来实现,那将是理想的。如果它效率更高,我愿意使用匹配重复属性而不是元素的系统。

编辑:实际上没有问题。我该怎么做呢?

4

3 回答 3

2

您可以使用LINQ2XML

XElement doc=XElement.Load("yourXML.xml");
foreach(XElement elm in doc.Elements())
{
    var attr=elm.Attributes();
     foreach(var elm1 in elm.Elements())
     {
          if(attr.Any(x=>elm1.Name.ToString().EndsWith(x.Name.ToString())) 
              elm1.ToString();//this contains your required XML
     }
}
于 2012-12-01T17:46:30.627 回答
2

我试过用 XPAth 1.0 来做,但没有成功,也许可以用 XPath 2 或 XQuery 来做。在 .NET 中最好使用 LINQ:

var xml = @"
    <Main>
         <Element1 Property1=""Hello"" Property3=""world"">
             <Element1.Property2>again</Element1.Property2>
             <Element1.Property3>Dave</Element1.Property3>
         </Element1>
         <Element2 Property1=""Hello"" Property3=""world"">
             <Element2.Property2>again</Element2.Property2>
             <Element2.Property1>
                 <SpecialElementForSayingHi/>
             </Element2.Property1>
         </Element2>
   </Main>";

   var doc = XDocument.Load(new StringReader(xml));

   var result = doc.Root.Descendants().
            Where(x => x.Parent.Attributes().
                                Any(y => x.Name == x.Parent.Name + "." + y.Name)
            );

如果你想得到字符串作为结果,你可以这样做

   var result = doc.Root.Descendants().
            Where(x => x.Parent.Attributes().
                                Any(y => x.Name == x.Parent.Name + "." + y.Name)
            ).Select(e => e.ToString()).Aggregate((current, next) => current + next);
于 2012-12-01T21:24:17.443 回答
2

这在 XPath 1.0 中是不可能的,因为它缺少诸如范围变量之类的特性或将函数指定为位置步骤的能力。

这是一个 XPath 2.0 解决方案

/*/*/*
    [substring-before(name(), '.') eq name(..)
   and
     substring-after(name(), '.') = ../@*/name()
    ]

基于 XSLT 2.0 的验证:

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>

 <xsl:template match="/">
  <xsl:sequence select=
  "/*/*/*
    [substring-before(name(), '.') eq name(..)
   and
     substring-after(name(), '.') = ../@*/name()
    ]"/>
 </xsl:template>
</xsl:stylesheet>

当对提供的 XML 文档应用此转换时:

<Main>
    <Element1 Property1="Hello" Property3="world">
        <Element1.Property2>again</Element1.Property2>
        <Element1.Property3>Dave</Element1.Property3>
    </Element1>
    <Element2 Property1="Hello" Property3="world">
        <Element2.Property2>again</Element2.Property2>
        <Element2.Property1>
            <SpecialElementForSayingHi/>
        </Element2.Property1>
    </Element2>
</Main>

对 XPath 表达式求值,并将该求值的结果复制到输出中:

<Element1.Property3>Dave</Element1.Property3>
<Element2.Property1>
            <SpecialElementForSayingHi/>
        </Element2.Property1>
于 2012-12-02T22:31:31.067 回答