Я пытаюсь объединить несколько узлов одного типа, используя XSLT с Saxon на Mac.
Используя то, что я нашел на SO, я пришел к следующему ...
Упрощенная версия такова:
Input.xml
<?xml version="1.0" encoding="UTF-8"?>
<products>
<product>
<id>1</id>
<other>y</other>
<notarget>x</notarget>
<target>red</target>
<target>green</target>
<target>blue</target>
</product>
<product>
<id>2</id>
<other>y</other>
<notarget>x</notarget>
<target>red</target>
<target>orange</target>
<target>yellow</target>
</product>
<product>
<id>3</id>
<other>y</other>
<notarget>x</notarget>
<target>yellow</target>
<target>purple</target>
<target>green</target>
</product>
</products>
transform.xsl
<?xml version="1.0"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<products>
<product>
<id>1</id>
<other>y</other>
<notarget>x</notarget>
<target><xsl:value-of select="string-join(//target/text(), ',')" /></target>
</product>
</products>
</xsl:template>
</xsl:stylesheet>
current output.xml
<?xml version="1.0" encoding="UTF-8"?>
<products>
<product>
<id>1</id>
<other>y</other>
<notarget>x</notarget>
<target>red,green,blue,red,orange,yellow,yellow,purple,green</target>
</product>
</products>
Но он объединяет все узлы в один «продукт», и я хочу вот что:
требуемый output.xml
<products>
<product>
<id>1</id>
<other>y</other>
<notarget>x</notarget>
<target>red, green, blue</target>
</product>
<product>
<id>2</id>
<other>y</other>
<notarget>x</notarget>
<target>red, orange, yellow</target>
</product>
<product>
<id>3</id>
<other>y</other>
<notarget>x</notarget>
<target>yellow, purple, green</target>
</product>
</products>
Я использую следующую команду в терминале:
saxon -s:input.xml -xsl:transform.xsl -o:output.xml '!indent=yes'
Может кто-нибудь направить меня в правильном направлении?Спасибо