Random String Generator Lua

[Solved] Random String Generator Lua | Lua - Code Explorer | yomemimo.com
Question : random string generator lua

Answered by : calm-crocodile-5o33dwzmwaeo

function RandomVariable(length)	local res = ""	for i = 1, length do	res = res .. string.char(math.random(97, 122))	end	return res
end

Source : https://gist.github.com/haggen/2fd643ea9a261fea2094 | Last Update : Fri, 05 Feb 21

Answers related to random string generator lua

Code Explorer Popular Question For Lua