Jump to content

Генерация случайной строки на lua


John

Recommended Posts

Для моей задачи нужно генерировать строку из заданного алфавита.

Пишу код в engine. Пока не получилось, покажите пример.

Link to comment
Share on other sites

Для этого можно написать функцию на чистом lua:

local charset = "abcdefghijklmnopqrstuvwxyz1234567890"
function string.random(length)
    if length > 0 then
        return string.random(length - 1) .. charset:sub(math.random(1, #charset), 1)
    else
        return ""
    end
end
print (string.random(10))

В engine есть встроенная функция random_string, которая входит в пакет utils.

lua-random-string.thumb.gif.905be4caf5ca4bd4e88c4cb08401b26f.gif

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...