Intellij Idea : Search in java Strings?

intellij-idea

Solution

Pressing CTRL + SHIFT + F gives you the possibility to search in "String literals only":

This also works with CTRL + F:

Additionally you can enable regular expression for some fancy searches.

Problem

Is there a way to search only in java strings in Intellij IDEA ? I have searched and could not found anything on this. I have to refactor hibernate HQL queries written as java strings. If IDE support search in strings it will be lot more easy to me.

Original source