You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/active-directory/app-provisioning/functions-for-customizing-application-data.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -799,16 +799,17 @@ The RandomString function generates a random string based on the conditions spec
799
799
|**MinimumNumbers**|Required |Number |Minimum numbers in the random string.|
800
800
|**MinimumSpecialCharacters**|Required |Number |Minimum number of special characters.|
801
801
|**MinimumCapital**|Required |Number |Minimum number of capital letters in the random string.|
802
+
|**MinimumLowerCase**|Required |Number |Minimum number of lower case letters in the random string.|
802
803
|**CharactersToAvoid**|Optional |String |Characters to be excluded when generating the random string.|
803
804
804
805
805
806
**Example 1:** - Generate a random string without special character restrictions:
806
-
`RandomString(10,2,2,2)`
807
-
Generates a random string with 10 characters (2 numbers, 2 special characters, and 2 capital letters).
807
+
`RandomString(6,3,0,0,3)`
808
+
Generates a random string with 10 characters (3 numbersand 3 lower case characters).
808
809
809
810
**Example 2:** - Genareate a random string with special character restrictions:
810
-
`RandomString(10,2,2,2,"?,")`
811
-
Generates a random string with 10 characters (2 numbers, 2 special characters, and 2 capital letters). Excludes "?" and "," from the random string generated.
811
+
`RandomString(10,2,2,2,1,"?,")`
812
+
Generates a random string with 10 characters (2 numbers, 2 special characters, 2 capital letters, 1 lower case letter). Excludes "?" and "," from the random string generated.
0 commit comments