|
|
|
|
|
by tmottabr
2081 days ago
|
|
in regex this is correct, but in many other contexts * is used as wildcard. ie.: in most OSes you can use * as wildcard for filename. file.* will refer to all files named "file" with any extension .zip will refer to all files with any name as long as they have the zip extension is a wildcard in most contexts while "." is wildcard only in regex that i know. |
|
Perhaps this is where the use of * as the wild-card character comes from. I find regular expressions can induce swearing, occasionally.