An asterisk repeating the preceding element any number of times.
Also known as: Repetition star, Regex wildcard
In a regular expression the asterisk applies to whatever comes immediately before it, matching that element zero or more times. It is named after Stephen Kleene, who introduced the operation in 1951.
POSIX defines the asterisk in a regular expression as matching zero or more occurrences of the preceding element.
Contexts: Software
Takes its name from Stephen Kleene's work on regular sets, where the star denotes closure under concatenation.
Contexts: Software
A small star of straight strokes radiating from a common centre, placed immediately after the element it repeats.
Both are asterisks in pattern matching with different meanings — the glob star stands for characters, this one repeats what precedes it.
Both are used in software contexts.