Answers for "generate random string lua v3rm"

Lua
2

random string generator lua

function RandomVariable(length)
	local res = ""
	for i = 1, length do
		res = res .. string.char(math.random(97, 122))
	end
	return res
end
Posted by: Guest on January-29-2021

Code answers related to "generate random string lua v3rm"

Browse Popular Code Answers by Language