Wildcards in Search Strings

Character

Use

* (asterisk)

Matches zero, one, or more characters.

? (question mark)

Matches any single character, but will not match zero characters.

[ ] (brackets0

Matches any one of the characters enclosed within the brackets.

If a pair of characters is separated by a dash and contained within brackets, the pattern matches any character that falls between the two characters in the current locale.

searching for special characters

Precede with backslash

\* \& \[   \]

Examples

a[bz]

a*d

a*d*