Wildcards Used By EMC Smarts Software
Note: Spaces are interpreted as characters and are subject to matching even if they are adjacent to operators like "&".
Table 10: Basic Wildcard Patterns
CHARACTER DESCRIPTION
Note: Spaces specified before or after wildcard operators are interpreted as characters and are subject to matching.
? | Matches any single character. |
| For example, server?.smarts.com matches server3.smarts.com and |
| serverB.smarts.com, but not server10.smarts.com. |
|
|
* | Matches an arbitrary string of characters. The string can be empty. |
| For example, server*.smarts.com matches |
| server.smarts.com (an empty match). |
|
|
[set] | Matches any single character that appears within [set]; or, if the first character |
| of [set] is (^), any single character that is not in the set. A hyphen |
| [set] indicates a range, so that |
| before the hyphen |
| empty. The character (^) in any position except the first, or a hyphen |
| first or last position, has no special meaning. |
| Example, |
| server9.smarts.com, but not server6.smarts.com. It also matches |
|
|
| Example: server[^12].smarts.com does not match server1.smarts.com or |
| server2.smarts.com, but will match server8.smarts.com. |
|
|
| Matches numbers in a given range. Both n1 and n2 must be strings of digits, |
| which represent |
| |
| than or equal to n1 and less than or equal to n2. If either end of the range is |
| omitted, no limitation is placed on the accepted number. |
| For example, |
| 98.49.1.10 through 98.49.100.10. |
| Example of an omitted high end of the range: |
| digits with a value greater than or equal to 50. |
| Example of an omitted low end of the range: |
| between zero and 150. |
| A more subtle example: The pattern |
| with * matching no characters. Similarly, it matches strings like 9x, with * |
| matching the trailing x. However, it does not match 11, because |
| always extracts the longest possible string of digits (11) and then matches only |
| if the number it represents is in range. |
|
|
Matches alternatives. For example,”abbccd” without spaces matches | |
| exactly the three following strings: “ab”, “bc”, and “cd”. A as the first or |
| last character of a pattern accepts an empty string as a match. |
| Example with spaces “ab bc” matches the strings “ab “ and “ bc”. |
|
|
\ | Removes the special status, if any, of the following character. Backslash (\) |
| has no special meaning within a set ([set]) or range |
|
|
44 | EMC Smarts Application Connectivity Monitor Configuration Guide |