How do I check if a list of characters are in a String, for example \"ABCDEFGH\" how do I check if any one of those is in a string.
From Guava: CharMatcher.matchesAnyOf
private static final CharMatcher CHARACTERS = CharMatcher.anyOf("ABCDEFGH"); assertTrue(CHARACTERS.matchesAnyOf("39823839A983923"));