No, you cannot do macro expansion INSIDE string literals (i.e. having the preprocessor to look inside literals for macros to expand).
You can have a macro expansion to produce a string literal using the stringify operator (#). But that's a different thing.