xml – xpath日期比较

前端之家收集整理的这篇文章主要介绍了xml – xpath日期比较前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图根据一个日期格式为yyyy-MM-dd的属性过滤元素.

我的XML看起来像这样:

<?xml version="1.0" encoding="utf-8"?>
<root>
  <article title="wired" pub-date="2010-11-22" />
  <article title="Plus 24" pub-date="2010-11-22" />
  <article title="Finance" pub-date="2010-10-25" />
</root>

我的xpath尝试:

'//article[xs:date(./@pub-date) > xs:date("2010-11-15")]'

使用xpath 2.0 – 除非绝对必要,否则将避免添加模式.

评论

I believe I must be missing something
then. Is it possible that I need to
specify something else for xs:date to
work? Maybe a xs: namespace
definition?

在XPath 1.0和2.0中,您都可以使用:
//article[number(translate(@pub-date,'-','')) > 20101115]

您的XPath 2.0表达式是正确的,使用Saxon 9.0.3这种转换:

<xsl:stylesheet version="2.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">

    <xsl:template match="/">
      <xsl:sequence select="//article[xs:date(./@pub-date) > xs:date('2010-11-15')]"/>
    </xsl:template>
</xsl:stylesheet>

当应用于提供的XML文档时:

<root>
  <article title="wired" pub-date="2010-11-22" />
  <article title="Plus 24" pub-date="2010-11-22" />
  <article title="Finance" pub-date="2010-10-25" />
</root>

产生想要的,正确的结果:

<article title="wired" pub-date="2010-11-22"/>
<article title="Plus 24" pub-date="2010-11-22"/>
原文链接:https://www.f2er.com/xml/292931.html

猜你在找的XML相关文章