That something is simply an example of how it would effectively be used. It can even be used categorically so there's only one example at the top of every category, and they can plug the relevant search term or filter in as needed.
So it would go from:
Code: Select all
Wildcard matching:
* Matches zero or more characters (except \).
** Matches zero or more characters.
? Matches one character (except \).
The whole filename is matched when using a wildcard.Code: Select all
Wildcard matching:
Example: Eagle[b]*[/b].jpg
* Matches zero or more characters (except \).
** Matches zero or more characters.
? Matches one character (except \).
The whole filename is matched when using a wildcard.