Deployment Guide

382 | Reference DellNetworking W- ClearPassGuest 6.1 | Deployment Guide
Regex Matches
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
The regular expression syntax used is Perl-compatible. For further details on writing regular expressions, consult a
tutorial or programming manual.