Wildcards for string comparison?
I have a series of binary numbers as strings - is there a wildcard I can use for string comparisons so that only certain digits need to the same? For instance,
my test string is "?1??0?" - how do I find only strings in which only the digits that are actually numbers match? (so 0001000 would match, for instance..)
Cheers.

