下面是 XML 结构。
<Docs>
<Doc>
<Title>Physics</Title>
<Desc>
<Part n="Part 1">
<Chap c="1"/>
<Chap c="2"/>
<Chap c="4"/>
</Part>
</Desc>
</Doc>
<Doc>
<Title>Physics</Title>
<Desc>
<Part n="Part 2">
<Chap c="2"/>
<Chap c="3"/>
<Chap c="4"/>
</Part>
</Desc>
</Doc>
</Docs>
我追求的输出如下 -
<Title>Physics,#,Part 1 - 1,2,4</Title>
<Title>Physics,#,Part 2 - 2,3,4</Title>
我尝试使用各种组合concat
,string-join
但都是徒劳的:(