blob: 45b0551fdc7f5b41a912d3d9b758fb9d99cf870b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>copy-string</title><link rel="stylesheet" type="text/css" href="../reference.css"><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="../index.html" title="DocBook XSL Stylesheets: Reference Documentation"><link rel="up" href="generallibrary.html" title="General Library Templates"><link rel="prev" href="dot.count.html" title="dot.count"><link rel="next" href="string.subst.html" title="string.subst"><link rel="copyright" href="copyright.html" title="License"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">copy-string</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="dot.count.html">Prev</a> </td><th width="60%" align="center">General Library Templates</th><td width="20%" align="right"> <a accesskey="n" href="string.subst.html">Next</a></td></tr></table><hr></div><div class="refentry" title="copy-string"><a name="copy-string"></a><div class="titlepage"></div>
<div class="refnamediv"><h2>copy-string</h2><p>
copy-string
— Returns <span class="quote">“<span class="quote">count</span>”</span> copies of a string
</p></div>
<div class="refsect1" title="Description"><a name="id36258033"></a><h2>Description</h2>
<p>Given a string, the <code class="function">copy-string</code>
template creates <em class="replaceable"><code>n</code></em> copies of the
string, when the value of <em class="replaceable"><code>n</code></em> is
given by the <em class="parameter"><code>count</code></em> parameter.</p>
<a name="copy-string.frag"></a><pre class="programlisting">
<xsl:template name="copy-string">
<!-- returns 'count' copies of 'string' -->
<xsl:param name="string"></xsl:param>
<xsl:param name="count" select="0"></xsl:param>
<xsl:param name="result"></xsl:param>
<xsl:choose>
<xsl:when test="$count>0">
<xsl:call-template name="copy-string">
<xsl:with-param name="string" select="$string"></xsl:with-param>
<xsl:with-param name="count" select="$count - 1"></xsl:with-param>
<xsl:with-param name="result">
<xsl:value-of select="$result"></xsl:value-of>
<xsl:value-of select="$string"></xsl:value-of>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$result"></xsl:value-of>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</pre>
</div>
</div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="dot.count.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="generallibrary.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="string.subst.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">dot.count </td><td width="20%" align="center"><a accesskey="h" href="../index.html">Home</a></td><td width="40%" align="right" valign="top"> string.subst</td></tr></table></div></body></html>
|