I'm looking for some sort of OO equivalent to the apache commons utility, which is the common way of handling this in java:
StringUtils.containsIgnoreCase("foobar", "OOB")
Is there a way to do this in cactoos? I've read through the source code and tests, but don't see anything that relates to it yet.
I can't picture it being used a lot in most development situations, but it's something I use quite frequently with automated testing.
To add some more context: Most of these checks have to do with selecting values on a web page that match a customer's data, but we want to avoid issues with text conversions and formatting in the UI layout.
An assert would technically work, but I'd prefer to avoid using exceptions to handle control flow.