Difference between revisions of "Utf8.insert"

From GiderosMobile
Line 2: Line 2:
 
'''Available since:''' Gideros 2016.06<br/>
 
'''Available since:''' Gideros 2016.06<br/>
 
=== Description ===
 
=== Description ===
Insert a substring to s. If idx is given, insert substring before char at this index, otherwise substring will concat to s. idx can be negative.
+
<translate>Insert a substring to s. If idx is given, insert substring before char at this index, otherwise substring will concat to s. idx can be negative.</translate>
 
<source lang="lua">
 
<source lang="lua">
 
(string) = utf8.insert(s,idx,substring)
 
(string) = utf8.insert(s,idx,substring)
 
</source>
 
</source>
 
=== Parameters ===
 
=== Parameters ===
'''s''': (string) <br/>
+
'''s''': (string) <translate></translate> <br/>
'''idx''': (number) index where to insert '''optional'''<br/>
+
'''idx''': (number) <translate>index where to insert</translate> '''optional'''<br/>
'''substring''': (string) '''optional'''<br/>
+
'''substring''': (string) <translate></translate> '''optional'''<br/>
 
=== Return values ===
 
=== Return values ===
'''Returns''' (string) new string<br/>
+
'''Returns''' (string) <translate>new string</translate><br/>

Revision as of 14:38, 23 August 2018

Available since: Gideros 2016.06

Description

Insert a substring to s. If idx is given, insert substring before char at this index, otherwise substring will concat to s. idx can be negative.

(string) = utf8.insert(s,idx,substring)

Parameters

s: (string)
idx: (number) index where to insert optional
substring: (string) optional

Return values

Returns (string) new string