What is the wild card character that stands for any single character in criteria?

Updated: 08/16/2021 by

What is the wild card character that stands for any single character in criteria?

Alternatively referred to as a wild character or wildcard character, a wildcard is a symbol used to replace or represent one or more characters. The most common wildcards are the asterisk (*), which represents one or more characters, and question mark (?), which represents a single character. In the examples below of how a wildcard may be used, realize that wildcards are relatively universal.

Wildcard basics

Percent ( % ) in a wildcard

The percent symbol is used in SQL to match any character (including an underscore) zero or more times.

Asterisk ( * ) in a wildcard

The asterisk in a wildcard matches any character zero or more times. For example, "comp*" matches anything beginning with "comp," which means "comp," "complete," and "computer" are all matched.

Question mark ( ? ) in a wildcard

A question mark matches a single character once. For example, "c?mp" matches "camp" and "comp." The question mark can also be used more than once. For example, "c??p" would match both of the above examples. In MS-DOS and the Windows command line, the question mark can also match any trailing question marks zero or one time. For example, "co??" would match all of the above matches, but because they are trailing question marks would also match "cop" even though it's not four characters.

Open and close brackets ( [ ] ) in a wildcard

With Unix shells, Windows PowerShell, and programming languages that support regular expressions, the open and close bracket wildcards match a single character in a range. For example, [a-z] matches any character "a" through "z," which means anything not in that range, like a number, would not be matched.

Tip

Adding an exclamation mark in places that support the brackets as a wildcard will tell the program to NOT match.

MS-DOS and Windows command line wildcard examples

dir c?mp

List files in MS-DOS using the dir command containing c, mp, and any other character between. For example, comp, camp, c2mp, and c-mp would all be matched.

dir *.mp3

In this next example, the dir command would only list files that end with .MP3 file extension.

dir *data

List any file that ends with data using the dir command. For example, the files "appdata," "mydata," and "123data" would all be matched.

dir he??.*

List any file four characters long that begins with he, and has any extension. For example, help.txt, help.mp3, and heck.jpg would all be matched.

rename *.txt *.jpg

Rename all files in the current directory that end with the file extension .txt to .jpg. For example, the file test.txt would become test.jpg.

del comp*.txt

Deleting files in MS-DOS that begin with comp and end with a ".txt" extension.

Find and replace using wildcard examples

Find and replace features that support wildcards, like Microsoft Word, that allow searches to contain wildcards. Below are examples of how to use wildcards in Find and Replace. Remember that for any of these to work; you must have the Use wildcards option checked in Find and Replace.

comp*r

Match anything starting with "comp" and ending with "r." In other words, this would find "computer" and "compiler" in your document. However, remember that "*" is greedy, meaning everything is matched up to "r." In other words, if there's an "r" anywhere after comp, it's matched. So, "computer your" is matched since it begins with "comp" and "your" ends with "r."

d[eo]ll

Using brackets, indicate to Microsoft Word to look for any of the letters contained in the brackets. In this example, "e" or "o" are matched, so find would match either "dell" or "doll."

d[o-u]ll

The brackets can also be used to search for a range of characters. In the above example, this range includes the letters from "o" to "u." This range matches words like "doll" and "dull" in your document.

d[!e]ll

Using an exclamation mark in the brackets tells the Find not to match any of the characters in the bracket. In the above example, this wildcard tells the Find not to match "dell," but to match anything else beginning with "d" and ending in 'll.'

d?ll

The question mark only matches one character. In the above example, this would match "dall," "dell," "dill," "doll," and "dull" since they contain a "d" at the first and "ll" at the end.

se{2}d

Using a curly bracket in your Find looks for the number of characters preceding the brackets. In the above example, Find matches "seed," but not match "sed."

<(comp)

A find starting with a less than and containing text in parentheses tells Find to look for any word beginning with whatever is contained in the parentheses. In the example above, this would find any words beginning with "comp."

(er)>

A string starting with characters in a parenthesis and ending a greater than tells Find to look for any word ending with whatever is contained in the parentheses. In the example above, this would find any words ending with "er."

Linux and Unix wildcard examples

ls comp*

This command uses the ls command to list all files and directories in the working directory that begin with the letters "comp" in a Linux variant.

rm c?mp

Deleting files using the rm command in a Linux variant containing c, mp, and any character between.

Microsoft Excel wildcard examples

=SUMIF(A1:A6,"*",B1:B6)

Excel formula to search for any character using the * wildcard in cells B1 through B6, and if found, use SUM to add all values between A1 and A6.

Asterisk, Glob, Incremental search, Meta-character, Regex, Software terms

Which character is used as a wildcard symbol in query design?

Wildcard characters in Access add flexibility to query criteria. Wildcard characters in Access represent unknown values. The asterisk “*” and the question mark “?” are the two main wildcard characters in Access you need to know. The asterisk represents multiple unknown characters.

Which wild card character represents any number of characters at its place?

The asterisk ( * ) The asterisk represents any number of unknown characters. Use it when searching for documents or files for which you have only partial names. For most web search engines, wildcards increase the number of your search results.

What does wildcard stand for?

1. : an unknown or unpredictable factor. : one picked to fill a leftover playoff or tournament berth after regularly qualifying competitors have all been determined.

Which wildcard characters will return a single character when using the Find dialog box?

Question mark as a wildcard represents any single character. It can help you get more specific when searching for a partial match. For example: ? - matches any entry containing one character, e.g. "a", "1", "-", etc.