Generate a random string vector

random_string_vector(
  n = 500,
  length = 6,
  characters = c(letters, LETTERS, 0:9)
)

Arguments

n

The number of items in the vector. Default is set to 500.

length

the number of characters in a string. Default is set to 6.

characters

A vector containing the characters to include. Default is all lowercase, all, uppercase letters and all numbers.