In VS2010, would there be a regular expression for "Find in Files" to search for all source files containing two separate words, regardless of line breaks?
As an example, I want to find any source file containing 'This' and 'That'.
I tried something like this, but this did not work:
((This). * \ N *. * (That))
source share