Consider the need to replace window titles that are currently in all caps i.e. "ADD PRESCRIPTION", "ADD PATIENT", to the form "Add Prescription" and "Add Patient".
I am using the Visual Studio search dialog to find all of the strings that are all caps using the regex "([A-Z]|[ ])*"
. That works great.
Is it possible to find and replace in Visual Studio with a regex on both the find and replace?
I can't seem to find anything that says that it is, so if it's not are there any tools that would let me replace it.