Search code examples
unity-game-enginemonodevelop

Can we use wildcards based searching in Monodevelop?


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.


Solution

  • MonoDevelop offers a search based on regex (not wildcards): enter image description here

    You can use it to search things such as Debug\.Log.+ which will match things like:

    Debug.LogError

    Debug.LogWarning