It's called file globbing, not regular expression.
Although both support wildcards like "?", "*", they have different schemes.
For example, "a*" in glob matches any filename that begins with "a", but in regex it matches any string that has 0 or more of letter "a". Another difference is wildcard "?" and "*" in regex must have a preceding element, while it's unnecessary in globbing.
As for your last question, a dot "." has not special meaning in globbing, it's always a literal dot. To match exactly one unknown character in globbing, one could use "?".