#5776
Yutaka Emura
Keymaster

prashob12 wrote:
Thanks a lot for replying

I tried what u told, but the number of Empty elements present in the is many, so if i use the replacment option it deletes one instance at a time, and the number of files with such instances are also many, so it will be time consuming.

I created a macro to replace all empty elements in at one go:

document.selection.Find(“”,eeFindNext | eeFindReplaceRegExp);
document.selection.CharLeft(false,1);
editor.ExecuteCommandByID(4153);
document.selection.Find(“”,eeFindNext | eeFindReplaceRegExp);
document.selection.Replace(“(]+>){1,20}”,””,eeFindNext | eeReplaceSelOnly | eeReplaceAll | eeFindReplaceRegExp);
document.selection.Replace(“”,””,eeFindNext | eeReplaceSelOnly | eeReplaceAll | eeFindReplaceRegExp);
document.selection.CharRight(false,1);

But i dont know how to make it run on all the files.
There are 1000’s of such files.

Thanks in Advance!!

If you have so many files, how about ReplaceInFiles Method (Editor object)?