Random

Description

This activity generates a random string.


Misc

MaxLength InArgument<Int32> REQUIRED

The maximum length of the generated string. It cannot be used with Pattern.

MinLength InArgument<Int32> REQUIRED

The minimum length of the generated string. It cannot be used with Pattern.

MinLowerCaseCharacters InArgument<Int32>

The minimum number of lower case characters of the generated string. If a Pattern is specified this value will be ignored.

MinNumericCharacters InArgument<Int32>

The minimum number of numeric characters of the generated string. If a Pattern is specified this value will be ignored.

MinSpecialCharacters InArgument<Int32>

The minimum number of special characters of the generated string. If a Pattern is specified this value will be ignored.

MinUpperCaseCharacters InArgument<Int32>

The minimum number of upper case characters of the generated string. If a Pattern is specified this value will be ignored.

Pattern InArgument<String> REQUIRED

Generate a string which follows the pattern.

Possible characters are:
L - for upper case letter;
l - for lower case letter;
n - for number;
s - for special character;
* - for any character;

RepeatCharacters InArgument<Boolean>

The default is TRUE. Set it to false to make DocsMarshal not generate a string with duplicated characters.

UseLowerCaseCharacters InArgument<Boolean> REQUIRED

Sets if the output string could contain lower case characters.

UseNumericCharacters InArgument<Boolean> REQUIRED

Sets if the output string could contain numbers.

UseSpecialCharacters InArgument<Boolean> REQUIRED

Sets if the output string could contain special characters. Available special characters are: , . ; : ? ! / @ # $ % ^ & ( ) = + * - _ { } [ ] < > | ~

UseUpperCaseCharacters InArgument<Boolean> REQUIRED

Sets if the output string could contain upper case characters.