10

我当前的程序需要以编程方式创建一个 XPathExpression 实例以应用于 XmlDocument。xpath 需要使用一些 XPath 函数,例如“ends-with”。但是,我找不到在 XPath 中使用“ends-with”的方法。一世

它抛出如下异常

未处理的异常:System.Xml.XPath.XPathException:需要命名空间管理器或 XsltC ontext。此查询具有前缀、变量或用户定义的函数。
在 MS.Internal.Xml.XPath.CompiledXpathExpr.get_QueryTree() 在 System.Xml.XPath.XPathNavigator.Evaluate(XPathExpression expr, XPathNodeIt erator context)
在 System.Xml.XPath.XPathNavigator.Evaluate(XPathExpression expr)

代码是这样的:

    XmlDocument xdoc = new XmlDocument();
    xdoc.LoadXml(@"<?xml version=""1.0"" encoding=""utf-8"" ?>
                        <myXml xmlns=""http://MyNamespace"" xmlns:fn=""http://www.w3.org/2005/xpath-functions""> 
                        <data>Hello World</data>
                    </myXml>");
    XPathNavigator navigator = xdoc.CreateNavigator();

    XPathExpression xpr;
    xpr = XPathExpression.Compile("fn:ends-with(/myXml/data, 'World')");

    object result = navigator.Evaluate(xpr);
    Console.WriteLine(result);

我尝试在编译表达式时更改代码以插入 XmlNamespaceManager,如下所示

    XmlDocument xdoc = new XmlDocument();
    xdoc.LoadXml(@"<?xml version=""1.0"" encoding=""utf-8"" ?>
                        <myXml xmlns=""http://MyNamespace"" xmlns:fn=""http://www.w3.org/2005/xpath-functions""> 
                        <data>Hello World</data>
                    </myXml>");
    XPathNavigator navigator = xdoc.CreateNavigator();
    XmlNamespaceManager nsmgr = new XmlNamespaceManager(xdoc.NameTable);
    nsmgr.AddNamespace("fn", "http://www.w3.org/2005/xpath-functions");

    XPathExpression xpr;
    xpr = XPathExpression.Compile("fn:ends-with(/myXml/data, 'World')", nsmgr);

    object result = navigator.Evaluate(xpr);
    Console.WriteLine(result);

XPathExpression.Compile 调用失败:

未处理的异常:System.Xml.XPath.XPathException:由于未知函数,此查询需要 XsltContext。在 MS.Internal.Xml.XPath.FunctionQuery.SetXsltContext(XsltContext context) 在 MS.Internal.Xml 的 MS.Internal.Xml.XPath.CompiledXpathExpr.UndefinedXsltContext.ResolveFuncti on(String prefix, String name, XPathResultType[] ArgTypes)。 XPath.CompiledXpathExpr.SetContext(XmlNamespaceManager nsManager) 在 System.Xml.XPath.XPathExpression.Compile(String xpath, IXmlNamespaceResolver nsResolver)

有人知道在 XPathExpression.Compile 中使用现成的 XPath 函数的技巧吗?谢谢

4

1 回答 1

34

该函数 不是为XPath 1.0定义的,而只是为XPath 2.0XQuery定义的。ends-with()

您正在使用 .NET。. NET 目前还没有实现 XPath 2.0XSLT 2.0XQuery

可以轻松构造一个 XPath 1.0 表达式,对其求值产生与函数相同的结果ends-with()

$str2 = substring($str1, string-length($str1)- string-length($str2) +1)

产生与以下相同的布尔结果(true()false()):

ends-with($str1, $str2)

在您的具体情况下,您只需要用正确的表达式替换$str1and $str2。因此,它们是/myXml/data'World'

因此,要使用的 XPath 1.0 表达式相当于 XPath 2.0ends-with(/myXml/data, 'World')表达式

'World' = 
   substring(/myXml/data,
             string-length(/myXml/data) - string-length('World') +1
             )
于 2008-12-31T05:24:40.987 回答