I am not sure where to post this but am hoping that perhaps fellow c# developers might be able to help.
I am wondering if anyone knows of search tools or code/text editors that have advanced serach/find capabilities. I am trying to search a large number of source files for lines of code containing "service auth" or "service_auth" and NOT containing the text "ALL".
It seems the built-in find only can search for a single, specific pattern and cannot exclude any patterns. I can't figure out how to search for "service auth" and "service_auth" at the same time and more importantly to specify to also exclude any line with "ALL" in it.
I am hoping to find something with capabilities like web searching where you can use a dash to indicate 'exclude'. For example, in the google search field, I might enter
[service auth service_auth -ALL] to get the results that I want.
Does anyone know of a way to do this type of advanced searching/parsing in Visual Studio or perhaps with a 3rd party text editor or search tool?
I appreciate any suggestions.
I am wondering if anyone knows of search tools or code/text editors that have advanced serach/find capabilities. I am trying to search a large number of source files for lines of code containing "service auth" or "service_auth" and NOT containing the text "ALL".
It seems the built-in find only can search for a single, specific pattern and cannot exclude any patterns. I can't figure out how to search for "service auth" and "service_auth" at the same time and more importantly to specify to also exclude any line with "ALL" in it.
I am hoping to find something with capabilities like web searching where you can use a dash to indicate 'exclude'. For example, in the google search field, I might enter
[service auth service_auth -ALL] to get the results that I want.
Does anyone know of a way to do this type of advanced searching/parsing in Visual Studio or perhaps with a 3rd party text editor or search tool?
I appreciate any suggestions.