我正在尝试从 XML 文件的日期时间格式中提取 XSLT 样式表中的日期。我使用的是 XSLT 1.0 和 XPATH 而不是 Python,这是我的限制。这是我在 XML 文档上的代码的一个示例:
<forecast-period index="3" start-time-local="2010-08-09T00:00:00+10:00" end-time-local="2010-08-10T00:00:00+10:00" start-time-utc="2010-08-08T14:00:00Z" end-time-utc="2010-08-09T14:00:00Z">
<element type="forecast_icon_code">12</element>
<element type="air_temperature_minimum" units="Celsius">8</element>
<element type="air_temperature_maximum" units="Celsius">15</element>
<text type="precis">Chance of light rain.</text>
</forecast-period>
我想从列表中提取星期一的预测。我试图在谷歌上搜索,发现星期几功能适用于此,但无法正确实施。我是这个 XSLT 和 XML 的新手。所以,我不知道如何从给定时间打印一天。
你能给我一些想法吗?