There are different kinds of regular expressions.
Here it seems you are talking about shell file name expansion. In this context, a dot is just a dot, a question mark matches a single character, the meaning of the dot in most regular expression, and the asterisk itself matches zero or more characters, whereas in regular expressions it is just a modifier applied to the previous expression.
While shell file name expansion can technically be considered a kind of regular expression, they are normally not called that.
.
? Shell globbing is not the same as regex expressions. – doneal24 Aug 22 '18 at 19:11