如何限制 XSLT 中的字数?
How to limit the number of words in XSLT?
给定以下 XML 文档:
<books>
<book>
<name>The problem of the ages</name>
</book>
<book>
<name>Filtering the tap</name>
</book>
<book>
<name>Legend of Atlantis</name>
</book>
</books>
我最多想从每本书的名字中取2个字。单词可以被假定为由空格分隔的字符序列。输出示例:
<library>
<record>The problem</record>
<record>Filtering the</record>
<record>Legend of</record>
</library>
我如何使用单个 XSLT 实现此目的?
尝试(在 3.0 中启用扩展文本):
<xsl:template match="book/name">
<record>{tokenize(.) => subsequence(1, 2)}</record>
</xsl:template>
给定以下 XML 文档:
<books>
<book>
<name>The problem of the ages</name>
</book>
<book>
<name>Filtering the tap</name>
</book>
<book>
<name>Legend of Atlantis</name>
</book>
</books>
我最多想从每本书的名字中取2个字。单词可以被假定为由空格分隔的字符序列。输出示例:
<library>
<record>The problem</record>
<record>Filtering the</record>
<record>Legend of</record>
</library>
我如何使用单个 XSLT 实现此目的?
尝试(在 3.0 中启用扩展文本):
<xsl:template match="book/name">
<record>{tokenize(.) => subsequence(1, 2)}</record>
</xsl:template>