Contains searches for exact Strings, not regexes.
String does have a "matches" method which accepts regexes, but it checks the ENTIRE String. There are two ways around this:
1. Add a wildcard to...