I would like to find all ruby ββclasses whose name matches the string (ignoring the case). This means that the string must be a substring of the class name.
Therefore, when you look for "stri", you should get the String class (among others).
Do you know a convenient and not too inefficient way to do this?
source share