How to rename many variable names at once (c/c++) -


is there tool allow me rename large number of variable names @ once.

i have large number of variables want put c structure , therefore, need add param. beginning of each name included in structure.

if want @ once, put regular expression advanced search/replace function. ^(name1|name2|name3)$ ought work. no guarantee won't catch other things besides variable uses (in particular, variable declarations). if want that, have work clang's tooling.


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

java - How to create Table using Apache PDFBox -

mpi - Why is MPI_Bsend not returning error even when the buffer is insufficient to accommodate all the messages -