我正在编写一个XSLT,除其他外,它定位某些具有“name”属性的元素,其值以短划线(' - ')开头。 找到这样的属性后,xslt会创建一个xsl:属性,该名称是“name”属性破折号后面的所有文本。
因此,例如,假设我有以下XML段:
<someelement>
<json:string name="-style">display: block; white-space: pre; border: 2px
solid #c77; padding: 0 1em 0 1em; margin: 1em;
background-color: #fdd; color: black</json:string>
[... some extra elements here ...]
</someelement>
我希望它成为
<someelement style="display: block; white-space: pre; border: 2px solid #c77;
padding: 0 1em 0 1em; margin: 1em; background-color: #fdd;
color: black">
[... some extra elements here ...]
</someelement>
当前,我正在尝试以下XSLT的几种变体:
<!-- Match string|number|boolean|null elements with a "name" attribute -->
<xsl:template match="json:string[@name] | json:number[@name] | json:boolean[@name] | json:null[@name]">
<xsl:choose>
<xsl:when test="starts-with(@name,'-')">
<xsl:attribute name="{substring(./[@name],2,string-length(./@name) - 1)}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:element name="{@name}">
<xsl:value-of select="."/>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
具体而言,这就是令我困惑的界限:
<xsl:attribute name="{substring(./[@name],2,string-length(./@name) - 1)}">
更具体地说,不起作用的部分是字符串长度部分。如果我用一个数字替换整个字符串长度的部分,比如2,它就可以正常工作。
是的,我知道substring-after会让我更好。 我确实尝试了以下方法,但它也不起作用:
<xsl:attribute name="{substring-after(./[@name],'-')}">
我确定这是一种语法错误。
P.S。 - 我正在使用XMLSPY进行测试。
非常感谢您的帮助。
答案 0 :(得分:0)
我建议你这样试试:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<!-- identity transform -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="*[starts-with(@name, '-')]">
<xsl:attribute name="{substring(@name, 2)}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:template>
</xsl:stylesheet>
测试:http://xsltransform.net/6r5Gh3g
请注意,如果这些&#34;特殊&#34;首先不处理元素:http://xsltransform.net/6r5Gh3g/1如果有可能,您还必须匹配父元素并从那里控制处理顺序:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<!-- identity transform -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="*[starts-with(@name, '-')]">
<xsl:attribute name="{substring(@name, 2)}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:template>
<xsl:template match="*[*[starts-with(@name, '-')]]">
<xsl:copy>
<xsl:apply-templates select="*[starts-with(@name, '-')]"/>
<xsl:apply-templates select="@*|node()[not(starts-with(@name, '-'))]"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>