POSITION:028,114
COLOUR:STANDARD
TEXT:00,Euphoria has two wildcard characters that closely follow DOS' version:
COLOUR:POINTS
TEXT:32,* - matches any 0 or more characters. For example, a generic search
TEXT:16,string of "A*" will match values like "Apple", "Acorn", and "A".
TEXT:16,A generic search string of "*e" would match values like "value"
TEXT:16,"cue", and "e".
TEXT:32,? - matches any single character. A generic search string of "g???"
TEXT:16,for example would match values like "game", "gone", and "goat". A 
TEXT:16,generic search string of "??t" would match values like "Cat",
TEXT:16,"dot", and "Hit".
COLOUR:STANDARD
TEXT:32,With wildcards now explained, we can introduce the wildcard_match()
TEXT:16,library routine.
