How do I find string literals containing a given substring with clang-query?

216 Views Asked by At

I am doing some automated refactoring and I want to understand if some name is used in strings. E.g. in the code below I want to find all string literals containing substring "hello", which will yield me the first string.

int hello;
const char* str = "say hello";
const char* str2 = "say world";

I am using clang-query for this purpose. Seems like I need the stringLiteral matcher, but I cannot understand what narrowing or traversal matcher to pass into it to select only the literals with the given substring.

0

There are 0 best solutions below