gpt4 book ai didi

xslt - 从元素中获取所有值

转载 作者:行者123 更新时间:2023-12-05 05:27:16 29 4
gpt4 key购买 nike

给定以下 XML,我如何通过一条语句获取两个值?
我试过/root/set/name/。没有运气。

 <root>
<set>
<name>John</name>
</set>
<set>
<name>Jane</name>
</set>
</root>

最佳答案

如果您想获得 John Jane 的输出,请使用此 XSLT。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" omit-xml-declaration="yes" />
<xsl:template match="root">
<xsl:value-of select="normalize-space()" />
</xsl:template>
</xsl:stylesheet>

这适用于,

<root>
<set>
<name>John</name>
</set>
<set>
<name>Jane</name>
</set>
</root>

将给 John Jane

关于xslt - 从元素中获取所有值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20765281/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com