在XSL中选择并转换子元素属性字符串值

时间:2012-04-27 16:01:10

标签: xml xslt xpath wix xslt-1.0

  • 如何提取File -> Source
  • 并将其指定为RegistryValue -> Name,其中RegistryValue作为提供XSLT的新元素注入?

源XML

<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    <Fragment>
        <DirectoryRef Id="WixSlave.Binaries">
            <Component Id="cmpA1D1BF677641BE2AE700859D8256B0FC" Guid="{B0BF9CBD-8A5D-43C1-B9DE-0A1B5A6BD1DE}">
                <File Id="filC2827DDF7874712A62423151FBE8CE34" Source="$(var.WixSlave.TargetDir)\WixSlave.exe" />
            </Component>
            <Component Id="cmpBC6AB890535757A915C99A10445CC74E" Guid="{8726FF82-808A-4736-AD0A-C804A34E494B}">
                <File Id="fil7BD5BE5CD71AC92FF47D1D51A99FEE05" Source="$(var.WixSlave.TargetDir)\WixSlave.exe.config" />
            </Component>
        </DirectoryRef>
    </Fragment>
    <Fragment>
        <ComponentGroup Id="WixSlave.Binaries">
            <ComponentRef Id="cmpA1D1BF677641BE2AE700859D8256B0FC" />
            <ComponentRef Id="cmpBC6AB890535757A915C99A10445CC74E" />
        </ComponentGroup>
    </Fragment>
</Wix>

XSLT在没有变量名属性值的情况下工作

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:wix="http://schemas.microsoft.com/wix/2006/wi" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <!-- Copy all attributes and elements to the output. -->
    <xsl:template match="@*|*">
        <xsl:copy>
            <xsl:apply-templates select="@*"/>
            <xsl:apply-templates select="*"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="wix:Wix/wix:Fragment/wix:DirectoryRef/wix:Component">
        <Component>
            <xsl:apply-templates select="@*|*"/>
            <RegistryValue Name="toBeVariableKey" Root="HKCU" Key="Software\[Manufacturer]\[ProductName]" Type="integer" Value="1" KeyPath="yes"/>
        </Component>
    </xsl:template>
</xsl:stylesheet>
  • 为了更具体,我想阅读File元素属性Source="$(var.WixSlave.TargetDir)\WixSlave.exe",然后将其转换为WixSlaveexe ,即。{从源字符串中提取字母(a-z,A-Z),从最后一次斜杠后开始
  • 然后将该字符串分配给RegistryValue元素Name属性,该属性在示例中为Name="toBeVariableKey",但对于第一个Name="WixSlaveexe"应该为Component 1}}

  • 对于第二个Component,应该从File Source="$(var.WixSlave.TargetDir)\WixSlave.exe.config"开始阅读并在RegistryValue添加Name="WixSlaveexeconfig",依此类推...... < / p>

1 个答案:

答案 0 :(得分:2)

您可以使用属性值模板设置名称

<RegistryValue Name="{substring-after(wix:File/@Source, '\')}" />

这应该在第一个斜杠后提取子字符串,并将结果分配给属性名称

要从文字中删除任何点,您可以使用翻译功能,就像这样

<RegistryValue Name="{translate(substring-after(wix:File/@Source, '\'), '.', '')}" />