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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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;