Files
lo/docs/data/core-randomstring.md
T
2025-10-06 17:15:49 +02:00

647 B

name, slug, sourceRef, category, subCategory, playUrl, variantHelpers, similarHelpers, position, signatures
name slug sourceRef category subCategory playUrl variantHelpers similarHelpers position signatures
RandomString randomstring string.go#L35 core string https://go.dev/play/p/rRseOQVVum4
core#string#randomstring
core#string#substring
core#string#chunkstring
core#string#words
core#string#capitalize
core#string#camelcase
core#string#pascalcase
core#string#kebabcase
core#string#snakecase
0
func RandomString(size int, charset []rune) string

Returns a random string of the specified length from the given charset.

str := lo.RandomString(5, lo.LettersCharset)
// e.g., "eIGbt"