random_string | R Documentation |
Get a random string, bucket name, user name or role name
random_string(prefix, size = 8)
random_bucket(prefix = "bucket-", size = 16)
random_user()
random_role()
prefix |
(character) any string. required. |
size |
(character) length of the random part (not including
|
random_string
: (character) a string with prefix
at beginning
random_bucket
: (character) a bucket name prefixed with prefix
(default: "bucket-")
random_user
/random_role
: (character) a user or role name with
a random adjective plus a random noun combined into one string, shortened
to no longer than 16 characters, if longer than 16
random_string("group-")
replicate(10, random_string("group-"))
random_bucket()
replicate(10, random_bucket())
random_user()
replicate(10, random_user())
random_role()
replicate(10, random_role())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.