- Random Generator
- Expression Generator
-
Expression Syntax Description
- ${number@min@max}:number is a
fixed string, and
min,max are integers greater than
1 and less than 1000.
Generates a random number string, the string length range is
[min,max].
Example: ${number@5@10} Generates a string of random numbers with length range of [5,10]. -
${lower@min@max}:
lower is a fixed string, and
min,max are the length range of the
generated random string. Generates a random lowercase string.
Example: ${lower@5@10} Generates a random lowercase string with length range of [5,10]. -
${upper@min@max}:upper is a fixed
string, and
min,max are the length range of the
generated random string. Generates a random uppercase string.
Example: ${upper@5@10} Generates a random uppercase string with length range of [5,10]. -
${alphaNumber@min@max}: alphaNumber is a fixed
string, and min,max are random
string length range. Generate random uppercase, lowercase and
numeric strings.
Example: ${alphaNumber@5@10} Generate a string of random lowercase, uppercase and numbers with length range of [5,10]. -
${unicode@start@end@min@max}:
unicode is a fixed string. start
is a hexadecimal string (two bytes) with a length of 4 means the
starting Unicode character.
end is a hexadecimal string (two
bytes) with a length of 4,
means the ending Unicode character.
end needs to be greater than start. min,max
are the length range of the random Unicode string generated.
Generates a random Unicode string in the codepoint range.
Example: ${unicode@0041@005A@5@10} Generate random uppercase string with length range of [5,10]. ${unicode@4E00@9FA5@5@10} Generate random Chinese characters with length range of [5,10]. -
${select@string1|string2|...}:select is a fixed string.
Followed by a list of candidate strings. Select a random string
from the list of candidate strings.
Example: ${select@gmail.com|outlook.com} random select gmail.com or outlook.com .
Related Tools
The online random email address generation tool, randomly generate email address, support custom generation parameters, support download email address results to the local computer.
Online email address generator that supports random generation of email addresses. This tool supports random generation based on selected character ranges or based on custom expressions. Typical uses for this tool are batch generation of email addresses for learning or testing.
- Random Generate : Use the selected characters, the special symbols, the email domain name suffix, randomly generate email addresses that meet the length range requirements. The selected characters and the special symbols are used as a list of candidate characters to generate the email addresses.
- Expression Generate : Use supported expression syntax to generate email addresses. Used for complex email address data generation. Expression syntax refer to the above syntax description, and the expression you fill in needs to be completely correct.
- Unique : If the generated email address requires uniqueness, make sure that the selected characters or the expression you fill in can generate enough unique email address.
- Generate Count : The number of email addresses to generate, in the range [1,1000] .