wildcard
In a pattern-matching string, a character that means any character(s) at this
point. Depending on the context, a wildcard can stand for just one character (
? ), or it can mean any number of any characters ( * ). For example, in the
pattern V*.4GL the asterisk means any number of any characters after the V and
preceding the period.
See also regular expression.