Administrator Guide

616 | Reference Dell Networking W-ClearPass Guest 6.5.0 | User Guide
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 159 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
\d Any decimal digit
\D Any character that is not a decimal digit
Table 159: Regular Expressions for Pattern Matching
The regular expression syntax used is Perl-compatible. For further details on writing regular expressions,
consult a tutorial or programming manual.