Wildcard Patterns
Pattern | Use | Example | Result |
---|---|---|---|
* | Match zero or more characters. | *card | Matches any string ending with the characters card, such as wildcard and discard |
? | Match exactly one occurrence of any character. | 198.93.92.??? | Matches a numeric string starting with 198.93.92. and ending with any 3 characters. |