Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
mNo edit summary
No edit summary
Line 10: Line 10:
 
Lua
 
Lua
   
  +
----
[[Category:API Functions|strrep]]
 
  +
{{WoW API}}
[[Category:API String Functions|strrep]]
 

Revision as of 05:57, 4 January 2006

string.rep(s, n)

Generate a string which is n copies of the string passed concatenated together.

> = string.rep("Lua ",5)
Lua Lua Lua Lua Lua
> = string.rep("Lua\n",3)
Lua
Lua
Lua

Template:WoW API