e.g. In my legacy code, there are lots of template usages. But I refactored the code base to limit the template usage only in base classes. Then here comes the problem, Is there a fast way (using find and replace, maybe) to change:
"
SomeTemplate<some_var>
" into just "some_var" ?
Thanks a lot!