I want to find and edit Debug statements in my file. I would like to know if I can edit all those files simultaneously using wildcards in the replace function of MonoDevelop.
MonoDevelop offers a search based on regex (not wildcards):
You can use it to search things such as Debug\.Log.+
which will match things like:
Debug.LogError
Debug.LogWarning