// now translate from the single and multi character escape
// sequences into an escape that conforms to the regexp syntax
str = Strings.replace(str, _multi, ".*");
str = Strings.replace(str, _single, ".");
SimpleRegex re = new SimpleRegex(str, uncase);
boolean matches = re.matches(o1.toString());
return _affirmation ? matches : !matches;
}