Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 XSLT2.0 将日期从 DDMMYYYY 转换为 YYYYMMDD。在这里,我通常从 DDMMYYYY 格式的 XML 中获取日期,我需要将其更改为 YYYYMMDD 格式。我们该怎么做,请帮助我。
无论是 Adarsh 建议的方式,还是
replace(yourdate, '(..)(..)(....)', '$3$2$1')
我真的很惊讶在 StackOverflow 上看到这样的问题。这个问题的哪一部分是困难的?
尝试这个:
<xsl:value-of select="concat(substring(yourdate,5,4),substring(yourdate,3,2),substring(yourdate,1,2))"/>