Introduction
The GenerateRandomString
activity can be used to generate random strings.
Input Data
Selected Allowed Characters
A list of allowed characters that can be contained in the result. If you leave it empty, the following characters are allowed by default:
ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789
Selected Length
The length of the generated random string. By default it’s 8.
Regex
Generates a random string until it matches the configured regex.
Max Iterations
How many random strings should be generated and tested against the regex. Default ist 100. So if the regex is to complicated, this might be reached. The current implementation does not use a reverse regex generator. This will be added in future versions. If the limit is reached, the result is not Done
, but of type RegexMismatch
.
Output Data
Result
A string containing the result.