...
The length of the generated random string. By default it’s 8.
Regex
Generates a random string until it matches the configured regexThe generated string is compared to this regex, if no regex is set then there is no check.
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
.
...