Wildcard Characters for ERM |
|
? |
Any single character. For example,'a?' would match AP, A1, etc. |
* |
Zero or more characters. For example, 'a*' would match AP, A1, Altec, etc. |
# |
Any single digit (0-9). For example, 'a#' would match A1, a2, etc. |
[charlist] |
Any single character in charlist. For example, '1[0234]' would match 10, 12, 13, 14, etc. |
[!charlist] or [^charlist] |
Any single character not in charlist. For example, '1[!0234]' would match 11, 15, 16, 17, 18, 19, etc. |
A group of one or more characters (charlist) enclosed in brackets ([]) can be used to match any single character in the string and can include almost any character code, including digits.
Other important rules for pattern matching include the following: