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 形式に変更する必要があります。どうすればこれを行うことができますか、助けてください。
これを試して:
<xsl:value-of select="concat(substring(yourdate,5,4),substring(yourdate,3,2),substring(yourdate,1,2))"/>