我在xsl
文件中有数千个这样的xsl模板。
<xsl:template name="foo">
...
...
</xsl:template>
<xsl:template match="bar" > <!-- ending spaces after quote -->
...
...
</xsl:template>
我的工作是在这里添加相同的命名空间。 改变后的xsl看起来像
<xsl:template name="foo" xmlns="http://example.org">
...
...
</xsl:template>
<xsl:template match="bar" xmlns="http://example.org" >
...
...
</xsl:template>
这是我的方法
1。标记以<xsl:template
2。在标记的行上添加正则表达式。
我遇到了第2点问题。如何才能在标记的行上应用一些正则表达式?
你有更好的方法吗?
更新
我的挑战是仅在标记的行上用>
替换所有xmlns="http://example.org">
。