string.rep
From GMod Wiki
Revision as of 15:00, 13 September 2009 by UnrealomegaBot (Talk | contribs)
| Function | |
| Syntax |
string.rep( String StringToRepeat, Number Repetitions ) Where is this used? |
| Description: | |
| Repeats the StringToRepeat, Repetitons number of times | |
| Returns: | String \ The resulting string. |
| Part of Library: | String |
| Realm: |
|
| BBCode Link: | [b][url=http://wiki.garrysmod.com/?title=String.rep]String.rep [img]http://wiki.garrysmod.com/favicon.ico[/img][/url][/b] |
Examples
| Description | repeats "my string, " 5 times. |
|---|---|
| Used on | |
| Code | local str = "my string, " print(string.rep(str, 5)) |
| Output | "my string, my string, my string, my string, my string, " |