Wildcard character

From Wikipedia, the free encyclopedia
Jump to: navigation, search

The term wildcard character has the following meanings:

Contents

[edit] Telecommunication

In telecommunications, a wildcard character is a character that may be substituted for any of a defined subset of all possible characters.

[edit] Computing

In computer (software) technology, a wildcard character can be used to substitute for any other character or characters in a string.

[edit] Files and directories

When specifying file names (or paths) in CP/M, DOS, Microsoft Windows and Unix-like operating systems, the asterisk character ("*") substitutes for any zero or more characters, and the question mark ("?") substitutes for any one character. In Unix shells and Windows PowerShell, ranges of characters enclosed in square brackets ("[" and "]") substitute for all the characters in their ranges; for example, [A-Za-z] substitutes for any single capitalized or lowercase letter. Matching wildcard patterns to multiple files or paths is referred to as glob expansion.

[edit] Databases

In SQL, wildcard characters can be used in "LIKE" expressions; the percent sign (%) matches zero or more characters, and underscore (_) a single character. In Microsoft Access, wildcard characters can be used in "LIKE" expressions; the asterisk sign (*) matches zero or more characters, and question mark (?) a single character.

[edit] Regular expressions

In regular expressions, the period (.) is the wildcard character for a single character. Combined with the asterisk operator (.*) it will match any number of characters.

[edit] See also

[edit] References


[edit] External links

Personal tools
Namespaces
Variants
Actions
Navigation
Interaction
Toolbox
Print/export
Languages