WoW:API strrep

From AddOn Studio
Revision as of 12:16, 26 May 2006 by WoWWiki>Mikk (Use Lua/Libshortcut template. Change category from "LUA Functions" to "Lua functions".)
Jump to navigation Jump to search

Lua/Libshortcut

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:LUA