我想在xsl中重命名处理指令。 我的输入如下:
<?xml version="1.0" encoding="utf-8" ?>
<material xml:lang="en-us">
<title>
<?PI_start author="joepublic" comment="Comment #1" ?>Discovering
<?PI_end?>XML
</title>
<related-stuff>
<?PI_start author="johndoe" comment="Comment #3" ?>
<a href="otherdoc.xml" />
<?PI_end?>
</related-stuff>
</material>
&#13;
我想重命名来自PI&#39; PI&#39;到&#39; otherPI&#39;,以及重命名属性&#34; author&#34;到&#34;用户&#34;。
结果如下:
<?xml version="1.0" encoding="utf-8"?>
<material xml:lang="en-us">
<title>
<?otherPI_start user="joepublic" comment="Comment #1"?>Discovering
<?otherPI_end?>XML
</title>
<related-stuff>
<?otherPI_start user="johndoe" comment="Comment #3"?>
<a href="otherdoc.xml" />
<?otherPI_end?>
</related-stuff>
</material>
&#13;
你能帮我识别一下xsl中的匹配语句吗?
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes" />
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*" />
</xsl:copy>
</xsl:template>
<xsl:template match="processing-instruction('PI_start')">
<xsl:copy>
<!-- What should I put here??? -->
</xsl:copy>
</xsl:template>
<xsl:template match="processing-instruction('PI_end')">
<xsl:copy>
<!-- What should I put there??? -->
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
&#13;
答案 0 :(得分:1)
要重命名处理指令,您可以执行以下操作:
<xsl:template match="processing-instruction('PI_start')">
<xsl:processing-instruction name="otherPI_start">
<xsl:value-of select="." />
</xsl:processing-instruction>
</xsl:template>
如果您还想修改内容,例如将author="joepublic"
更改为user="joepublic"
,您必须使用字符串操作来执行此操作 - 例如:
<xsl:template match="processing-instruction('PI_start')">
<xsl:processing-instruction name="otherPI_start">
<xsl:value-of select="substring-before(., 'author=')" />
<xsl:text>user=</xsl:text>
<xsl:value-of select="substring-after(., 'author=')" />
</xsl:processing-instruction>
</xsl:template>