Visual Studio Regex Replace _name to m_name -


i want switch naming conventions: string _name should changed string m_name. problem find (_[a-za-z]+) replace m$1 matches '_banana' in something.eat_banana()and replaces 'something.eatm_banana()' , [^a-za-z](_[a-za-z]+) matches brace dosomething(_bla) , replaces dosomethingm_bla) or colon in someclass::_variable. don't know if it's possible this?


Comments

Popular posts from this blog

javascript - WinJS appendTextAsync producing scheduler errors -

minify - Minimizing css files -

Sockets with kotlin -