Skip to content

Commit 2872618

Browse files
Update functions-for-customizing-application-data.md
1 parent aacc47f commit 2872618

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

articles/active-directory/app-provisioning/functions-for-customizing-application-data.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -799,16 +799,17 @@ The RandomString function generates a random string based on the conditions spec
799799
| **MinimumNumbers** |Required |Number |Minimum numbers in the random string.|
800800
| **MinimumSpecialCharacters** |Required |Number |Minimum number of special characters.|
801801
| **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.|
802803
| **CharactersToAvoid** |Optional |String |Characters to be excluded when generating the random string.|
803804

804805

805806
**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 numbers and 3 lower case characters).
808809

809810
**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.
812813

813814
---
814815

0 commit comments

Comments
 (0)