如何在XSLT中将“单引号”替换为“双引号”

时间:2015-05-20 02:09:52

标签: xml powershell xslt

如何替换xml值,例如:

os.system("yes | bdutil --bucket <BUCKET> --num_workers 1 "
          "--env_var_files hadoop2_env.sh --default_fs hdfs "
          "--zone us-central1-b --prefix <NAME> --force deploy")

为:

<name>Linda O'Connel</name>

通过XSLT?

我需要这个,因为我必须在powershell命令行和其他平台上传递这个值,因为需要“双单引号”来转义撇号/单引号。

2 个答案:

答案 0 :(得分:8)

假设有一个XSLT 1.0处理器,您需要为此使用递归命名模板,例如:

<xsl:template name="replace">
    <xsl:param name="text"/>
    <xsl:param name="searchString">'</xsl:param>
    <xsl:param name="replaceString">''</xsl:param>
    <xsl:choose>
        <xsl:when test="contains($text,$searchString)">
            <xsl:value-of select="substring-before($text,$searchString)"/>
            <xsl:value-of select="$replaceString"/>
           <!--  recursive call -->
            <xsl:call-template name="replace">
                <xsl:with-param name="text" select="substring-after($text,$searchString)"/>
                <xsl:with-param name="searchString" select="$searchString"/>
                <xsl:with-param name="replaceString" select="$replaceString"/>
            </xsl:call-template>
        </xsl:when>
        <xsl:otherwise>
            <xsl:value-of select="$text"/>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

电话示例:

<xsl:template match="name">
    <xsl:copy>
        <xsl:call-template name="replace">
            <xsl:with-param name="text" select="."/>
        </xsl:call-template>
    </xsl:copy>
</xsl:template>

答案 1 :(得分:-2)

您还可以尝试以下内容。

  <xsl:variable name="temp">'</xsl:variable>
  <name>
    <xsl:value-of select="concat(substring-before(name,$temp),$temp,$temp,substring-after(name,$temp))"/>
  </name>