How Would I Tell the User That I’m Accepting "MSDOS Wildcards"?
I have a text input in which I am accepting wildcards. Namely the *
which matches any number of characters and the ?
which matches exactly 1 character.
Is there a name for this wildcard system, which I could use as shorthand?
C:\Temp>dir * /b
bar
baz
buz
fooC:\Temp>dir b* /b
bar
baz
buzC:\Temp>dir b? /b
File Not FoundC:\Temp>dir ba? /b
bar
baz