我有一个如下的 xml:
<Report xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Name>HourlyReport</Name>
<Id>8</Id>
<TotalResults>1</TotalResults>
<TotalPages>1</TotalPages>
<Items>
<Item>
<Id>1</Id>
<Hour0>23</Hour0>
<Hour1>12</Hour1>
<Hour2>7</Hour2>
<Hour3>18</Hour3>
<Hour4>32</Hour4>
.
.
.
<Hour20>28</Hour20>
<Hour21>39</Hour21>
<Hour22>51</Hour22>
<Hour23>49</Hour23>
</Item>
</Items>
</Report>
我需要使用xslt从上面的 XML 中获取最大值。在上述情况下,最大值为51。我怎么能得到那个?也有可能在任何 xslt 变量中获得这个最大值,所以我可以在其他地方使用它。我没有任何办法。您可以使用任何 xslt 版本 1.0 或 2.0 。