サンプル入力XML:
<?xml version="1.0" encoding="utf-8"?>
<root>
<MyNode>AZ 1234</MyNode>
<MyNode>A3 123</MyNode>
<MyNode>7Z 12345</MyNode>
<MyNode>15 23</MyNode>
</root>
XSLTコード:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
<xsl:output method="xml" indent="yes"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="MyNode">
<xsl:copy>
<xsl:choose>
<xsl:when test="string-length(substring-after(.,' '))='4'">
<xsl:value-of select="concat(substring-before(.,' '), substring-after(.,' '))"/>
</xsl:when>
<xsl:when test="string-length(substring-after(.,' '))='3'">
<xsl:value-of select="."/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="."/>
</xsl:otherwise>
</xsl:choose>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
出力:
<?xml version="1.0" encoding="utf-8"?>
<root>
<MyNode>AZ1234</MyNode>
<MyNode>A3 123</MyNode>
<MyNode>7Z 12345</MyNode>
<MyNode>15 23</MyNode>
</root>
を確実に行うことができます! :) –
もしカウントが3でも4でもないなら、それは5または2であるのと同じように '(" A1 23456 "または" BZ 12 ")'スペースを保持すべきかどうか? –
。私のコードでは、 ''のスペースを取り除くことなく、コピーしています。あなたの要件としてそれを変更します。 :) –