XSL:用连字符替换空格
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XSL:用连字符替换空格相关的知识,希望对你有一定的参考价值。
我试图通过“ - ”翻译空白区域。数据来自TEI-XML
数据:
<m type="base">
<m type="baseForm">A<c type="infix">B</c>CD</m>
</m>
和XSL
文件:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:for-each select="descendant::m[@type='base']/m[@type='baseForm']">
<xsl:choose>
<xsl:when test="current()/c"><xsl:value-of select="current()[not != c[@type['infix']]] |node()"/></xsl:when>
<xsl:otherwise><xsl:value-of select="current()"/></xsl:otherwise>
</xsl:choose>
<!-- my attempt -->
<xsl:value-of select="translate(., ' ','-')"/>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
在回答了这篇文章XSL replace space with caret之后,我使用了translate
,但它不起作用。结果应该是:“A-B-CD”,但我有“A B CD”。
谢谢你的帮助。
答案
正如我可以预测的那样,空间的问题将是XML如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<m type="base">
<m type="baseForm">
A
<c type="infix">
B
</c>
CD
</m>
</m>
在这种情况下,您的逻辑可以放在variable
内,然后执行translate
函数,请参阅下面的XSL:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" />
<xsl:template match="/">
<!--put your logic in variable-->
<xsl:variable name="str">
<xsl:for-each select="descendant::m[@type='base']/m[@type='baseForm']">
<xsl:value-of select="."/>
</xsl:for-each>
</xsl:variable>
<!--normalize space will prevent spaces from left and right of string, then all spaces inside will be replaced by '-' -->
<xsl:value-of select="translate(normalize-space($str), ' ', '-')"/>
</xsl:template>
</xsl:stylesheet>
结果将如预期:
A-B-CD
另一答案
我们也可以使用模板替换,只翻译一次:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="text()" priority="2">
<xsl:value-of select="translate(., " ", ",")" />
</xsl:template>
<xsl:template match="/">
<xsl:element name="Your1stNode">
<xsl:apply-templates select="Your1stNode/text()" />
</xsl:element>
<xsl:element name="Your2ndNode">
<xsl:apply-templates select="Your2ndNode/text()" />
</xsl:element>
</xsl:template>
</xsl:stylesheet>
您可以使用整个文档中的text()替换所有空格。
以上是关于XSL:用连字符替换空格的主要内容,如果未能解决你的问题,请参考以下文章