Using Wildcard Characters

You can use the match string with a number of wildcard characters.

The summary of wildcard characters is:
SymbolMeaning
%

Any string of 0 or more characters.

_

Any single character.

[ ]

Any single character within the specified range ([a-f]) or set ([abcdef]).

[^]

Any single character not within the specified range ([^a-f]) or set ([^abcdef]).

Enclose the wildcard character and the match string in single or double quotes (like “[dD]eFr_nce”).