I'm working with undocumented 3rd party library. I know that there is a certain String stored somewhere in one of the fields deep in the library (dynamic value that I can predict, but I want to get it from the API of the library).
Is there a way to search (something like fulltext search?) through the full program memory while in the debug mode and while stopped on certain breakpoint? I want to find which field in which object actually stores this value.
(I know I could do manual dump and grep, I'm more interested if IntelliJ supports this feature)