Description
RandomStringGen is a generator that generates a random string based on the lengths passed.
- Generator Parameters
- Example 1 - Random String of 15 Characters
- Example 2 - Random String Including Specified Characters
Generator Parameters
Items with an asterisk * are required.
- length* - Defines the length of a random string.
- stringType* - Defines the ways the given value can be modified (letters, numbers, lettersAndNumbers, specialCharacters, ASCIICharacters, or allCharacters).
- caseType* - Defines the ways in which the given value may be modified (All, CaptialCase, UpperCase, or LowerCase).
- seed - Using the seed will ensure that the same random data is generated each time data is generated.
- unique -Defines whether unique string combinations will be generated. The default value is 'false,' meaning that the same value can be generated more than once.
- include - Defines which characters must be included in the generation. It will also override the stringType selection.
- exclude - Defines which characters will be excluded from generation.
Example 1 - Random String of 15 Characters
Example 2 - Random String Including Specified Characters
You may input the characters you'd like to use in the include text box to build a random string.