当我的XSL样式表遇到此节点时:
原文链接:https://www.f2er.com/xml/292372.html<node attribute="3"/>
…它应该将其转换为此节点:
<node attribute="***"/>
我的模板匹配属性并重新创建它,但我不知道如何将值设置为:字符’*’重复的次数与原始属性的值一样多.
<xsl:template match="node/@attribute"> <xsl:variable name="repeat" select="."/> <xsl:attribute name="attribute"> <!-- What goes here? I think I can do something with $repeat... --> </xsl:attribute> </xsl:template>
谢谢!