Generate a random string vector
random_string_vector(
n = 500,
length = 6,
characters = c(letters, LETTERS, 0:9)
)
The number of items in the vector. Default is set to 500.
the number of characters in a string. Default is set to 6.
A vector containing the characters to include. Default is all lowercase, all, uppercase letters and all numbers.