answersLogoWhite

0

The interpretation of the asterisk depends on the exact filter language and dialect in use.

For example, the Windows console supports an asterisk as a placeholder for any alphanumerical character which can be part of a file base name, that is, letters, digits, underscore, and some others, but other characters with special meaning in this context, such as a period, a colon or a backslash. For example - the instruction Dir *.txt would list every file with the extension txt.

Commonly used equivalents console applications under the Unix (Linux) family of operating systems (so-called 'shell' programs such as BASH and many others) interpret the asterisk as a placeholder for any valid file name character (that is, including the period).

In most regular expression dialects, the asterisk does not represent a particular character or group of characters at all. It is instead used to implement a multiplier, where the asterisk matches "zero or more times whichever search expression precedes the asterisk." Thus, 'AZ*' will be interpreted as "match a sequence consisting of letter A, followed by zero or more letters Z: 'A', 'AZ', 'AZZZZZ', etc.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Is the asterisk is the wildcard used to represent one and only one character in find criteria?

True


Which symbols represent the wildcard characters in Access?

The asterisk * character.The asterisk * character.The asterisk * character.The asterisk * character.The asterisk * character.The asterisk * character.The asterisk * character.The asterisk * character.The asterisk * character.The asterisk * character.The asterisk * character.


What is the special character called to represent one or more charac ters in the criteria area of a query?

The special character used to represent one or more characters in the criteria area of a query is called a wildcard. In SQL, the asterisk (*) is commonly used as a wildcard to match any sequence of characters, while the question mark (?) can represent a single character. Wildcards are essential for flexible searching and pattern matching in databases.


Which WildCard character represents one or more file names?

A: an ****** or a ?????? Is usually accepted


What is the only wildcard character which can be used in GCSS-Army field search?

* (Asterisk/Star)


What is the only wildcard character which can be used in gcss-army field searches?

* (Asterisk/Star)


What character such as an asterisk that is used as a substitute for characters in a file is called what?

wild card


What are wild card?

A wild card is one which can have any value or suit in a game at the discretion of the whoever holds it.


What is the symbol above the 8 on a keyboard stand for?

It is an asterisk. It is used as a wildcard character, for footnotes, or for censorship- as in "You son of a *****."


What are the wildcard characters in C?

The wildcard characters in C programming include the asterisk (*) and the question mark (?). An asterisk stands for any missing number of characters in a string while a question mark represents exactly one missing character.


Which are the two wildcard symbols used in queries?

The two wildcard symbols used in queries are the asterisk (*) and the question mark (?). The asterisk represents zero or more characters in a query, while the question mark represents a single character in a query.


What is a wildcard for more than one character?

In Windows and UNIX-based systems, while specifying filenames, ? is a wildcard that substitutes for exactly one character. In SQL databases, the underscore (_) matches exactly one character.