gpt4 book ai didi

xml - 使用 XSLT 重命名 XML 元素

转载 作者:数据小太阳 更新时间:2023-10-29 02:47:59 26 4
gpt4 key购买 nike

我需要更改原始 XML 中的一些元素名称。我正在尝试使用 XSLT 执行此操作,但无法使其正常工作。

这是一个 XML 示例:

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="test.xsl" type="text/xsl"?>
<html>
<body>
<section>Jabber</section>
<itemtitle>JabberJabber</itemtitle>
<p>Always Jabber Jabber Jabber</p>
<h3>Emboldened Requests </h3>
<p>Somemore Jabber Here</p>
<img scr="bigpicture.jpg"></img>
<poll><p>Which statement best characterizes you?</p></poll>
<pcredit>Left: Jumpin Jasper/Jumpy Images</pcredit>
</body>
</html>

我需要将其更改为:

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="test.xsl" type="text/xsl"?>
<html>
<body>
<div class="issuehead">Jabber</div>
<div class="issuetitle">JabberJabber</div>
<p>Always Jabber Jabber Jabber</p>
<h3>Emboldened Requests </h3>
<p>Somemore Jabber Here</p>
<img scr="bigpicture.jpg"></img>
<div class="poll"><p>Which statement best characterizes you?</p></div>
<div class="pcredit">Left: Jumpin Jasper/Jumpy Images</div>
</body>
</html>

这是我做的 XSLT,但我无法让它工作:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.1"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="html" />

<xsl:template match="/">

<html>
<head>
</head>
<body>
<xsl:apply-templates/>
</body>
</html>

<xsl:template match="section">
<div class="issuehead"><xsl:value-of select="."/></div>
</xsl:template>

<xsl:template match="itemtitle">
<div class="issuetitle"> <xsl:value-of select="."/></div>
</xsl:template>

<xsl:template match="img"></xsl:template>

<xsl:template match="poll">
<div class="poll"><xsl:value-of select="."/></div>
</xsl:template>

<xsl:template match="pcredit">
<div class="pcredit"><xsl:value-of select="."/></div>
</xsl:template>

<xsl:template match="p"></xsl:template>

<xsl:template match="h3"></xsl:template>

</xsl:template>
</xsl:stylesheet>

感谢您的帮助!

最佳答案

对于这样的事情,从身份转换开始:

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="node( ) | @*">
<xsl:copy>
<xsl:apply-templates select="@* | node( )"/>
</xsl:copy>
</xsl:template>

</xsl:stylesheet>

这只会复制每个节点。但是随后您添加额外的模板来执行您需要的操作:

<xsl:template match="section"> 
<div class="issuehead">
<xsl:apply-templates select="@* | node( )"/>
</div>
</xsl:template>

此模式应该可以满足您的需求。

关于xml - 使用 XSLT 重命名 XML 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/737973/

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