Is it possible to replace to upper case in Visual Studio using "Find and Replace" dialog and RegEx (?) à la: . => Upper(.)
?
Say I have:
m_<b>a</b>blabla
I want:
_<b>A</b>blabla
You can solve this by using Visual Studio temporary macros. This is a very powerful, flexible feature which I use all the time for performing repetitive code manipulations.
I'm assuming you're using the C# default key bindings here.
<m_:Ll
" - words that begin with m, underscore, then a lower case letter;