Difference between revisions of "String.rep"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
 +
'''Class:''' [[string]]<br/>
 +
 
=== Description ===
 
=== Description ===
 
Returns a string that is the concatenation of n copies of the string s.
 
Returns a string that is the concatenation of n copies of the string s.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(string) = string.rep(s,n)
 
(string) = string.rep(s,n)
</source>
+
</syntaxhighlight>
 +
 
 
=== Parameters ===
 
=== Parameters ===
'''s''': (string) string to copy <br/>
+
'''s''': (string) string to copy<br/>
'''n''': (number) how many times to copy a string <br/>
+
'''n''': (number) how many times to copy a string<br/>
 +
 
 
=== Return values ===
 
=== Return values ===
 
'''Returns''' (string) concatenated by n copies<br/>
 
'''Returns''' (string) concatenated by n copies<br/>
 +
 +
{{String}}

Latest revision as of 15:33, 13 July 2023

Available since: Gideros 2011.6
Class: string

Description

Returns a string that is the concatenation of n copies of the string s.

(string) = string.rep(s,n)

Parameters

s: (string) string to copy
n: (number) how many times to copy a string

Return values

Returns (string) concatenated by n copies