我希望删除所有空格,以便我的最终代码看起来像一个文本块。
这是我的标题
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml"
doctype-public="-W3CDTD XHTML 1.0 Strict//EN"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
omit-xml-declaration="yes"
encoding="UTF-8"
indent="no" />
似乎大部分时间都有效,但我遇到了问题。见source
问题区域似乎是
<!-- clinical research coordinator -->
<xsl:template match="clinical-research-coordinators">
<xsl:variable name="id" select="item/@id" />
<xsl:variable name="entry" select="//people/entry[@id=$id]" />
<xsl:value-of select="$entry/display-name" />,
clinical research coordinator, at
<xsl:element name="a">
<xsl:attribute name="href">mailto:<xsl:value-of select="$entry/email" /></xsl:attribute>
<xsl:attribute name="class">email</xsl:attribute>
<xsl:value-of select="$entry/email" />
</xsl:element>
or
<xsl:value-of select="$entry/phone" />
</xsl:template>
我正在使用Symphony CSM生成数据。我只想删除所有空格,但我想保留缩进模式以便于阅读。
答案 0 :(得分:1)
来自http://www.w3.org/TR/xslt#strip
在源文档树之后 或样式表文件已经 建造,但在它之前 否则由XSLT处理,一些文本 节点被剥离。文本节点是 从不剥离,除非它只包含 空白字符。
此
",
clinical research coordinator, at
"
和
"
or
"
不是仅限空格的文本节点,因此不应该从样式表中对它们进行条带化。
这就是xsl:text
指令的原因。使用:
<xsl:text>, clinical research coordinator, at </xsl:text>
和
<xsl:text> or </xsl:text>
答案 1 :(得分:1)
问题区域似乎是
<!-- clinical research coordinator -->
<xsl:template match="clinical-research-coordinators">
<xsl:variable name="id" select="item/@id" />
<xsl:variable name="entry" select="//people/entry[@id=$id]" />
<xsl:value-of select="$entry/display-name" />, clinical research coordinator, at
<xsl:element name="a">
<xsl:attribute name="href">mailto:
<xsl:value-of select="$entry/email" />
</xsl:attribute>
<xsl:attribute name="class">email</xsl:attribute>
<xsl:value-of select="$entry/email" />
</xsl:element>
or
<xsl:value-of select="$entry/phone" />
</xsl:template>
解决方案:
<!-- clinical research coordinator -->
<xsl:template match="clinical-research-coordinators">
<xsl:variable name="id" select="item/@id" />
<xsl:variable name="entry" select="//people/entry[@id=$id]" />
<xsl:value-of select="$entry/display-name" />, clinical research coordinator, at <xsl:text/>
<xsl:element name="a">
<xsl:attribute name="href">mailto:
<xsl:value-of select="$entry/email" />
</xsl:attribute>
<xsl:attribute name="class">email</xsl:attribute>
<xsl:value-of select="$entry/email" />
</xsl:element>
<xsl:text> or </xsl:text>
<xsl:value-of select="$entry/phone" />
</xsl:template>
请注意:使用<xsl:text>
指令消除现有的空白字符,并明确指定应准确输出的文本。