Hi,Apache Commons Lang has a StringUtils.containsIgnoreCase Method, but in Guava's Strings class I didn't find a similar method.
Commons Lang's implementation uses String.toUpperCase method internaly, but I found this Thread on Stackoverflow about a better way to do a case insensitive contains. Any plans to add Strings.containsIgnoreCase method in Guava?Regards
Jan Ehrhardt--
guava-...@googlegroups.com
Project site: http://guava-libraries.googlecode.com
This group: http://groups.google.com/group/guava-discuss
This list is for general discussion.
To report an issue: http://code.google.com/p/guava-libraries/issues/entry
To get help: http://stackoverflow.com/questions/ask (use the tag "guava")
java.util.regex probably didn't exist when that was added. In general, we don't plan to grow Guava with many functions that can already be accomplished with regex.