Brocade Network Advisor SAN User Manual v12.0.0 (53-1002696-01, April 2013)
Brocade Network Advisor SAN User Manual 1133
53-1002696-01
Appendix
F
Regular Expressions
In this appendix
This appendix presents a summary of Unicode regular expression constructs that you can use in
the Management application.
•Characters . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1133
•Character classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1134
•Predefined character classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1134
•POSIX character classes (US-ASCII only) . . . . . . . . . . . . . . . . . . . . . . . . . 1134
•java.lang.Character classes (simple java character type). . . . . . . . . . . . 1135
•Classes for Unicode blocks and categories . . . . . . . . . . . . . . . . . . . . . . . 1135
•Boundary matches . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1135
•Greedy quantifiers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1136
•Reluctant quantifiers. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1136
•Possessive quantifiers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1136
•Logical operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1136
•Back references. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1137
•Special constructs (non-capturing) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1137
TABLE 1 Characters
Construct Matches
xThe character x
\\ The backslash character
\0n The character with octal value 0n (0 <= n <= 7)
\0nn The character with octal value 0nn (0 <= n <= 7)
\0mnn The character with octal value 0mnn (0 <= m <= 3, 0 <= n <= 7)
\xhh The character with hexadecimal value 0xhh
\uhhhh The character with hexadecimal value 0xhhhh
\t The tab character ('\u0009')
\n The newline (line feed) character ('\u000A')
\r The carriage-return character ('\u000D')
\f The form-feed character ('\u000C')
\a The alert (bell) character ('\u0007')