Config变换的XSLT模式匹配

时间:2014-09-26 06:14:04

标签: xml regex xslt web-config-transform

我正在尝试进行Config转换。 在配置文件中我有

<system.serviceModel>
<client>
    <endpoint address="net.pipe://localhost/someservice" ....../>
</client>

我需要更换本地主机&#39;使用XSLT转换。我无法使用正则表达式。

感谢,

2 个答案:

答案 0 :(得分:1)

使用身份转换并添加此模板:

<xsl:template match="@address[contains(., '://localhost/')]">
  <xsl:attribute name="{name()}">
    <xsl:value-of select="substring-before(., 'localhost')" />
    <xsl:text>replacement value</xsl:text>
    <xsl:value-of select="substring-after(., 'localhost')" />
  </xsl:attribute>
</xsl:template>

答案 1 :(得分:0)

这个脚本应该可以解决问题:

<?xml version="1.0" encoding="UTF-8"?>
<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="endpoint/@address">
        <xsl:attribute name="address"><xsl:value-of select="replace(current(),'localhost','www.myhost.com')"/></xsl:attribute>
    </xsl:template>
</xsl:stylesheet>

请注意,您的输入XML文件必须格式正确。它必须具有包含所有其他节点的根XML节点。请参阅下面的测试源XML。我选择将根节点命名为“xml”。节点“system.serviceModel”必须有一个结束标记。

源XML:

<xml>
   <system.serviceModel/>
   <client>
      <endpoint address="net.pipe://localhost/someservice"/>
   </client>
</xml>

结果XML:

<?xml version="1.0" encoding="UTF-8"?>
<xml>
   <system.serviceModel/>
   <client>
      <endpoint address="net.pipe://www.myhost.com/someservice"/>
   </client>
</xml>