Windbg - How can I Dump Strings which match a given filter
问题 One can dump all the string using the following command !dumpheap -type System.string How can dump or print only those string which starts or contains a specific "string" Example. I am only intrested to view the string which contains "/my/app/request" 回答1: Use sosex instead of sos for this. It has a !strings command which allows you to filter strings using the /m:<filter> option. 回答2: Use !sosex.strings. See !sosex.help for options to filter strings based on content and/or length. 回答3: Not