matchEos = checkForNull(listofchars, tmpMatch);
charList = tmpMatch.toString();
iter = new StringCharacterIterator(string);
for (char c = iter.last(); c != CharacterIterator.DONE; c = iter.previous()) {
if (charList.indexOf(c) != -1) {
theOffset = iter.getIndex();
return true;
}
}