Deployment Guide

l logonCount: The logonCount property counts the number of successful times the user tried to log on to this
account.
l mail: The mail property is a single-valued property that contains the SMTP address for the user (such as
demo@example.com).
l memberOf: The memberOf property is a multi-valued property that contains groups of which the user is a direct
member.
l primaryGroupID: The primaryGroupID property is a single-valued property containing the relative identifier
(RID) for the primary group of the user.
l sAMAccountType: The sAMAccountType property specifies an integer that represents the account type.
l unicodePwd: The unicodePwd property is the password for the user.
Regular Expressions
The characters shown in Table 41 can be used to perform pattern matching tasks using regular expressions.
Regex Matches
a Any string containing the letter “a”
^a Any string starting with “a”
^a$ Only the string “a”
a$ Any string ending with “a”
. Any single character
\. A literal “.”
[abc] Any of the characters a, b, or c
[a-z0-9A-Z] Any alphanumeric character
[^a-z] Any character not in the set a through z
a? Matches zero or one “a”
a+ Matches one or more: a, aa, aaa,
a* Matches zero or more: empty string, a, aa, aaa…
a|b Alternate matches: Matches an “a” or “b”
(a.*z) Grouping: matches sequentially within parentheses
a*? “Non-greedy” zero or more matches
\ooo The character with octal code ooo
\040 A space
Table 41:
Regular Expressions for Pattern Matching
Dell Networking W-ClearPass Guest 6.0 | Deployment Guide Regular Expressions | 305